Enum 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="iterativeTaskObjectProcessing"/>
         <enumeration value="asynchronousMessageProcessing"/>
         <enumeration value="liveSyncChangeProcessing"/>
         <enumeration value="retrievedResourceObjectProcessing"/>
         <enumeration value="workflowOperation"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Detail

      • CLOCKWORK_RUN

        public static final TracingRootType CLOCKWORK_RUN
        Clockwork.run execution.
      • ITERATIVE_TASK_OBJECT_PROCESSING

        public static final TracingRootType ITERATIVE_TASK_OBJECT_PROCESSING
        Object processing for iterative task.
      • 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 name
        NullPointerException - if the argument is null
      • value

        public String value()