Enum OpType
- java.lang.Object
-
- java.lang.Enum<OpType>
-
- com.evolveum.midpoint.schema.traces.OpType
-
- All Implemented Interfaces:
Serializable
,Comparable<OpType>
@Experimental public enum OpType extends Enum<OpType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OpType
determine(OperationResultType operation)
String
getFormattedName(OpNode node)
OperationKindType
getKind()
String
getLabel()
static String
getLast(String operation)
static OpType
valueOf(String name)
Returns the enum constant of this type with the specified name.static OpType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLOCKWORK_RUN
public static final OpType CLOCKWORK_RUN
-
CLOCKWORK_CLICK
public static final OpType CLOCKWORK_CLICK
-
PROJECTOR_PROJECT
public static final OpType PROJECTOR_PROJECT
-
MODEL_AUDIT
public static final OpType MODEL_AUDIT
-
PROJECTOR_INBOUND
public static final OpType PROJECTOR_INBOUND
-
PROJECTOR_TEMPLATE_BEFORE_ASSIGNMENTS
public static final OpType PROJECTOR_TEMPLATE_BEFORE_ASSIGNMENTS
-
PROJECTOR_TEMPLATE_AFTER_ASSIGNMENTS
public static final OpType PROJECTOR_TEMPLATE_AFTER_ASSIGNMENTS
-
PROJECTOR_ASSIGNMENTS
public static final OpType PROJECTOR_ASSIGNMENTS
-
ASSIGNMENT_EVALUATION_OUTER
public static final OpType ASSIGNMENT_EVALUATION_OUTER
-
ASSIGNMENT_EVALUATION
public static final OpType ASSIGNMENT_EVALUATION
-
ASSIGNMENT_SEGMENT_EVALUATION
public static final OpType ASSIGNMENT_SEGMENT_EVALUATION
-
PROJECTOR_FOCUS_POLICY_RULES
public static final OpType PROJECTOR_FOCUS_POLICY_RULES
-
POLICY_RULE_EVALUATION
public static final OpType POLICY_RULE_EVALUATION
-
POLICY_CONSTRAINT_EVALUATION
public static final OpType POLICY_CONSTRAINT_EVALUATION
-
PROJECTION_ACTIVATION
public static final OpType PROJECTION_ACTIVATION
-
PROJECTOR_PROJECTION
public static final OpType PROJECTOR_PROJECTION
-
PROJECTOR_COMPONENT_OTHER
public static final OpType PROJECTOR_COMPONENT_OTHER
-
CLOCKWORK_METHOD
public static final OpType CLOCKWORK_METHOD
-
RESOURCE_OBJECT_CONSTRUCTION_EVALUATION
public static final OpType RESOURCE_OBJECT_CONSTRUCTION_EVALUATION
-
MAPPING_EVALUATION
public static final OpType MAPPING_EVALUATION
-
MAPPING_TIME_VALIDITY_EVALUATION
public static final OpType MAPPING_TIME_VALIDITY_EVALUATION
-
MAPPING_PREPARATION
public static final OpType MAPPING_PREPARATION
-
MAPPING_EVALUATION_PREPARED
public static final OpType MAPPING_EVALUATION_PREPARED
-
TRANSFORMATION_EXPRESSION_EVALUATION
public static final OpType TRANSFORMATION_EXPRESSION_EVALUATION
-
VALUE_TUPLE_TRANSFORMATION
public static final OpType VALUE_TUPLE_TRANSFORMATION
-
VALUE_METADATA_COMPUTATION
public static final OpType VALUE_METADATA_COMPUTATION
-
ITEM_CONSOLIDATION
public static final OpType ITEM_CONSOLIDATION
-
SCRIPT_EXECUTION
public static final OpType SCRIPT_EXECUTION
-
CHANGE_EXECUTION
public static final OpType CHANGE_EXECUTION
-
FOCUS_CHANGE_EXECUTION
public static final OpType FOCUS_CHANGE_EXECUTION
-
PROJECTION_CHANGE_EXECUTION
public static final OpType PROJECTION_CHANGE_EXECUTION
-
UPDATE_SHADOW_SITUATION
public static final OpType UPDATE_SHADOW_SITUATION
-
LINK_UNLINK_SHADOW
public static final OpType LINK_UNLINK_SHADOW
-
CHANGE_EXECUTION_DELTA
public static final OpType CHANGE_EXECUTION_DELTA
-
CHANGE_EXECUTION_OTHER
@Deprecated public static final OpType CHANGE_EXECUTION_OTHER
Deprecated.
-
FOCUS_REPOSITORY_LOAD
public static final OpType FOCUS_REPOSITORY_LOAD
-
FOCUS_LOAD_CHECK
public static final OpType FOCUS_LOAD_CHECK
-
SHADOW_LOAD
public static final OpType SHADOW_LOAD
-
FULL_PROJECTION_LOAD
public static final OpType FULL_PROJECTION_LOAD
-
MODEL_OTHER
public static final OpType MODEL_OTHER
-
PROVISIONING_API
public static final OpType PROVISIONING_API
-
PROVISIONING_INTERNAL
public static final OpType PROVISIONING_INTERNAL
-
REPOSITORY
public static final OpType REPOSITORY
-
REPOSITORY_CACHE
public static final OpType REPOSITORY_CACHE
-
CONNECTOR
public static final OpType CONNECTOR
-
OTHER
public static final OpType OTHER
-
-
Method Detail
-
values
public static OpType[] 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 (OpType c : OpType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OpType 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 nameNullPointerException
- if the argument is null
-
determine
public static OpType determine(OperationResultType operation)
-
getLabel
public String getLabel()
-
getKind
public OperationKindType getKind()
-
-