Enum InternalCounters
- java.lang.Object
-
- java.lang.Enum<InternalCounters>
-
- com.evolveum.midpoint.schema.internals.InternalCounters
-
- All Implemented Interfaces:
Serializable
,Comparable<InternalCounters>
public enum InternalCounters extends Enum<InternalCounters>
- Author:
- semancik
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getKey()
String
getLabel()
InternalOperationClasses
getOperationClass()
static InternalCounters
valueOf(String name)
Returns the enum constant of this type with the specified name.static InternalCounters[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RESOURCE_SCHEMA_PARSE_COUNT
public static final InternalCounters RESOURCE_SCHEMA_PARSE_COUNT
This denotes parsing from XML inResourceSchemaFactory.getRawSchema(ResourceType)
.
-
RESOURCE_SCHEMA_FETCH_COUNT
public static final InternalCounters RESOURCE_SCHEMA_FETCH_COUNT
-
RESOURCE_REPOSITORY_READ_COUNT
public static final InternalCounters RESOURCE_REPOSITORY_READ_COUNT
-
RESOURCE_REPOSITORY_MODIFY_COUNT
public static final InternalCounters RESOURCE_REPOSITORY_MODIFY_COUNT
-
CONNECTOR_INSTANCE_INITIALIZATION_COUNT
public static final InternalCounters CONNECTOR_INSTANCE_INITIALIZATION_COUNT
-
CONNECTOR_INSTANCE_CONFIGURATION_COUNT
public static final InternalCounters CONNECTOR_INSTANCE_CONFIGURATION_COUNT
-
CONNECTOR_SCHEMA_PARSE_COUNT
public static final InternalCounters CONNECTOR_SCHEMA_PARSE_COUNT
-
CONNECTOR_CAPABILITIES_FETCH_COUNT
public static final InternalCounters CONNECTOR_CAPABILITIES_FETCH_COUNT
-
SCRIPT_COMPILE_COUNT
public static final InternalCounters SCRIPT_COMPILE_COUNT
-
SCRIPT_EXECUTION_COUNT
public static final InternalCounters SCRIPT_EXECUTION_COUNT
-
CONNECTOR_OPERATION_COUNT
public static final InternalCounters CONNECTOR_OPERATION_COUNT
-
CONNECTOR_MODIFICATION_COUNT
public static final InternalCounters CONNECTOR_MODIFICATION_COUNT
-
CONNECTOR_SIMULATED_PAGING_SEARCH_COUNT
public static final InternalCounters CONNECTOR_SIMULATED_PAGING_SEARCH_COUNT
-
SHADOW_FETCH_OPERATION_COUNT
public static final InternalCounters SHADOW_FETCH_OPERATION_COUNT
-
SHADOW_CHANGE_OPERATION_COUNT
public static final InternalCounters SHADOW_CHANGE_OPERATION_COUNT
-
PROVISIONING_ALL_EXT_OPERATION_COUNT
public static final InternalCounters PROVISIONING_ALL_EXT_OPERATION_COUNT
All provisioning operations that reach out to the resources.
-
REPOSITORY_READ_COUNT
public static final InternalCounters REPOSITORY_READ_COUNT
-
PRISM_OBJECT_COMPARE_COUNT
public static final InternalCounters PRISM_OBJECT_COMPARE_COUNT
-
PRISM_OBJECT_CLONE_COUNT
public static final InternalCounters PRISM_OBJECT_CLONE_COUNT
-
ROLE_EVALUATION_COUNT
public static final InternalCounters ROLE_EVALUATION_COUNT
-
ROLE_EVALUATION_SKIP_COUNT
public static final InternalCounters ROLE_EVALUATION_SKIP_COUNT
-
PROJECTOR_RUN_COUNT
public static final InternalCounters PROJECTOR_RUN_COUNT
-
TRIGGER_FIRED_COUNT
public static final InternalCounters TRIGGER_FIRED_COUNT
-
-
Method Detail
-
values
public static InternalCounters[] 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 (InternalCounters c : InternalCounters.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InternalCounters 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
-
getKey
public String getKey()
-
getLabel
public String getLabel()
-
getOperationClass
public InternalOperationClasses getOperationClass()
-
-