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 SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetKey()StringgetLabel()InternalOperationClassesgetOperationClass()static InternalCountersvalueOf(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_COUNTpublic static final InternalCounters RESOURCE_SCHEMA_PARSE_COUNT This denotes parsing from XML inResourceSchemaFactory.getRawSchema(ResourceType).
 - 
RESOURCE_SCHEMA_FETCH_COUNTpublic static final InternalCounters RESOURCE_SCHEMA_FETCH_COUNT 
 - 
RESOURCE_REPOSITORY_READ_COUNTpublic static final InternalCounters RESOURCE_REPOSITORY_READ_COUNT 
 - 
RESOURCE_REPOSITORY_MODIFY_COUNTpublic static final InternalCounters RESOURCE_REPOSITORY_MODIFY_COUNT 
 - 
CONNECTOR_INSTANCE_INITIALIZATION_COUNTpublic static final InternalCounters CONNECTOR_INSTANCE_INITIALIZATION_COUNT 
 - 
CONNECTOR_INSTANCE_CONFIGURATION_COUNTpublic static final InternalCounters CONNECTOR_INSTANCE_CONFIGURATION_COUNT 
 - 
CONNECTOR_SCHEMA_PARSE_COUNTpublic static final InternalCounters CONNECTOR_SCHEMA_PARSE_COUNT 
 - 
CONNECTOR_CAPABILITIES_FETCH_COUNTpublic static final InternalCounters CONNECTOR_CAPABILITIES_FETCH_COUNT 
 - 
SCRIPT_COMPILE_COUNTpublic static final InternalCounters SCRIPT_COMPILE_COUNT 
 - 
SCRIPT_EXECUTION_COUNTpublic static final InternalCounters SCRIPT_EXECUTION_COUNT 
 - 
CONNECTOR_OPERATION_COUNTpublic static final InternalCounters CONNECTOR_OPERATION_COUNT 
 - 
CONNECTOR_MODIFICATION_COUNTpublic static final InternalCounters CONNECTOR_MODIFICATION_COUNT 
 - 
CONNECTOR_SIMULATED_PAGING_SEARCH_COUNTpublic static final InternalCounters CONNECTOR_SIMULATED_PAGING_SEARCH_COUNT 
 - 
SHADOW_FETCH_OPERATION_COUNTpublic static final InternalCounters SHADOW_FETCH_OPERATION_COUNT 
 - 
SHADOW_CHANGE_OPERATION_COUNTpublic static final InternalCounters SHADOW_CHANGE_OPERATION_COUNT 
 - 
PROVISIONING_ALL_EXT_OPERATION_COUNTpublic static final InternalCounters PROVISIONING_ALL_EXT_OPERATION_COUNT All provisioning operations that reach out to the resources.
 - 
REPOSITORY_READ_COUNTpublic static final InternalCounters REPOSITORY_READ_COUNT 
 - 
PRISM_OBJECT_COMPARE_COUNTpublic static final InternalCounters PRISM_OBJECT_COMPARE_COUNT 
 - 
PRISM_OBJECT_CLONE_COUNTpublic static final InternalCounters PRISM_OBJECT_CLONE_COUNT 
 - 
ROLE_EVALUATION_COUNTpublic static final InternalCounters ROLE_EVALUATION_COUNT 
 - 
ROLE_EVALUATION_SKIP_COUNTpublic static final InternalCounters ROLE_EVALUATION_SKIP_COUNT 
 - 
PROJECTOR_RUN_COUNTpublic static final InternalCounters PROJECTOR_RUN_COUNT 
 - 
TRIGGER_FIRED_COUNTpublic static final InternalCounters TRIGGER_FIRED_COUNT 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 - 
getKeypublic String getKey() 
 - 
getLabelpublic String getLabel() 
 - 
getOperationClasspublic InternalOperationClasses getOperationClass() 
 
- 
 
-