Enum TracingRootType
- java.lang.Object
-
- java.lang.Enum<TracingRootType>
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.TracingRootType
-
- All Implemented Interfaces:
Serializable
,Comparable<TracingRootType>
public enum TracingRootType extends Enum<TracingRootType>
Java class for TracingRootType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TracingRootType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="clockworkRun"/> <enumeration value="activityItemProcessing"/> <enumeration value="asynchronousMessageProcessing"/> <enumeration value="liveSyncChangeProcessing"/> <enumeration value="retrievedResourceObjectProcessing"/> <enumeration value="workflowOperation"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVITY_ITEM_PROCESSING
Item processing within an activity.ASYNCHRONOUS_MESSAGE_PROCESSING
Processing of asynchronous message.CLOCKWORK_RUN
Clockwork.run execution.LIVE_SYNC_CHANGE_PROCESSING
Processing of live sync change event.RETRIEVED_RESOURCE_OBJECT_PROCESSING
Processing of object retrieved from a resource (e.g.WORKFLOW_OPERATION
Processing of workflow operation.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TracingRootType
fromValue(String v)
String
value()
static TracingRootType
valueOf(String name)
Returns the enum constant of this type with the specified name.static TracingRootType[]
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 TracingRootType CLOCKWORK_RUN
Clockwork.run execution.
-
ACTIVITY_ITEM_PROCESSING
public static final TracingRootType ACTIVITY_ITEM_PROCESSING
Item processing within an activity.
-
ASYNCHRONOUS_MESSAGE_PROCESSING
public static final TracingRootType ASYNCHRONOUS_MESSAGE_PROCESSING
Processing of asynchronous message.
-
LIVE_SYNC_CHANGE_PROCESSING
public static final TracingRootType LIVE_SYNC_CHANGE_PROCESSING
Processing of live sync change event.
-
RETRIEVED_RESOURCE_OBJECT_PROCESSING
public static final TracingRootType RETRIEVED_RESOURCE_OBJECT_PROCESSING
Processing of object retrieved from a resource (e.g. when doing import or reconciliation).
-
WORKFLOW_OPERATION
public static final TracingRootType WORKFLOW_OPERATION
Processing of workflow operation.
-
-
Method Detail
-
values
public static TracingRootType[] 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 (TracingRootType c : TracingRootType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TracingRootType 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
-
value
public String value()
-
fromValue
public static TracingRootType fromValue(String v)
-
-