Enum OperationKindType

  • All Implemented Interfaces:
    Serializable, Comparable<OperationKindType>

    public enum OperationKindType
    extends Enum<OperationKindType>

    Java class for OperationKindType.

    The following schema fragment specifies the expected content contained within this class.

     <simpleType name="OperationKindType">
       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
         <enumeration value="clockworkExecution"/>
         <enumeration value="clockworkClick"/>
         <enumeration value="projectorExecution"/>
         <enumeration value="resourceObjectConstructionEvaluation"/>
         <enumeration value="mappingEvaluation"/>
         <enumeration value="assignmentEvaluation"/>
         <enumeration value="scriptEvaluation"/>
         <enumeration value="repositoryCache"/>
         <enumeration value="repository"/>
         <enumeration value="focusLoadCheck"/>
         <enumeration value="focusLoad"/>
         <enumeration value="projectionLoad"/>
         <enumeration value="fullProjectionLoad"/>
         <enumeration value="focusChangeExecution"/>
         <enumeration value="projectionChangeExecution"/>
         <enumeration value="provisioning"/>
         <enumeration value="connector"/>
         <enumeration value="other"/>
         <enumeration value="modelAudit"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Detail

      • CLOCKWORK_EXECUTION

        public static final OperationKindType CLOCKWORK_EXECUTION
        Whole execution (run) of the clockwork.
      • CLOCKWORK_CLICK

        public static final OperationKindType CLOCKWORK_CLICK
        Single click of the clockwork.
      • PROJECTOR_EXECUTION

        public static final OperationKindType PROJECTOR_EXECUTION
        Execution of the projector.
      • RESOURCE_OBJECT_CONSTRUCTION_EVALUATION

        public static final OperationKindType RESOURCE_OBJECT_CONSTRUCTION_EVALUATION
        Evaluation of a resource object construction.
      • MAPPING_EVALUATION

        public static final OperationKindType MAPPING_EVALUATION
        Evaluation of a mapping.
      • ASSIGNMENT_EVALUATION

        public static final OperationKindType ASSIGNMENT_EVALUATION
        Evaluation of an assignment.
      • SCRIPT_EVALUATION

        public static final OperationKindType SCRIPT_EVALUATION
        Evaluation of a script.
      • REPOSITORY_CACHE

        public static final OperationKindType REPOSITORY_CACHE
        Repository cache operation.
      • FOCUS_LOAD_CHECK

        public static final OperationKindType FOCUS_LOAD_CHECK
        Check whether focus should be loaded. TODO really?
      • FOCUS_LOAD

        public static final OperationKindType FOCUS_LOAD
        Focus load check that resulted in focus being loaded. TODO really?
      • PROJECTION_LOAD

        public static final OperationKindType PROJECTION_LOAD
        Projection load.
      • FULL_PROJECTION_LOAD

        public static final OperationKindType FULL_PROJECTION_LOAD
        Full projection load.
      • FOCUS_CHANGE_EXECUTION

        public static final OperationKindType FOCUS_CHANGE_EXECUTION
        Execution of focus change.
      • PROJECTION_CHANGE_EXECUTION

        public static final OperationKindType PROJECTION_CHANGE_EXECUTION
        Execution of projection change.
      • PROVISIONING

        public static final OperationKindType PROVISIONING
        Provisioning API operation.
      • MODEL_AUDIT

        public static final OperationKindType MODEL_AUDIT
        Recording audit in model.
    • Method Detail

      • values

        public static OperationKindType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (OperationKindType c : OperationKindType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static OperationKindType valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • value

        public String value()