Enum EventType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<EventType>, org.apache.thrift.TEnum

    public enum EventType
    extends java.lang.Enum<EventType>
    implements org.apache.thrift.TEnum
    • Enum Constant Detail

      • WorkflowExecutionStarted

        public static final EventType WorkflowExecutionStarted
      • WorkflowExecutionCompleted

        public static final EventType WorkflowExecutionCompleted
      • WorkflowExecutionFailed

        public static final EventType WorkflowExecutionFailed
      • WorkflowExecutionTimedOut

        public static final EventType WorkflowExecutionTimedOut
      • DecisionTaskScheduled

        public static final EventType DecisionTaskScheduled
      • DecisionTaskStarted

        public static final EventType DecisionTaskStarted
      • DecisionTaskCompleted

        public static final EventType DecisionTaskCompleted
      • DecisionTaskTimedOut

        public static final EventType DecisionTaskTimedOut
      • DecisionTaskFailed

        public static final EventType DecisionTaskFailed
      • ActivityTaskScheduled

        public static final EventType ActivityTaskScheduled
      • ActivityTaskStarted

        public static final EventType ActivityTaskStarted
      • ActivityTaskCompleted

        public static final EventType ActivityTaskCompleted
      • ActivityTaskFailed

        public static final EventType ActivityTaskFailed
      • ActivityTaskTimedOut

        public static final EventType ActivityTaskTimedOut
      • ActivityTaskCancelRequested

        public static final EventType ActivityTaskCancelRequested
      • RequestCancelActivityTaskFailed

        public static final EventType RequestCancelActivityTaskFailed
      • ActivityTaskCanceled

        public static final EventType ActivityTaskCanceled
      • TimerStarted

        public static final EventType TimerStarted
      • TimerFired

        public static final EventType TimerFired
      • CancelTimerFailed

        public static final EventType CancelTimerFailed
      • TimerCanceled

        public static final EventType TimerCanceled
      • WorkflowExecutionCancelRequested

        public static final EventType WorkflowExecutionCancelRequested
      • WorkflowExecutionCanceled

        public static final EventType WorkflowExecutionCanceled
      • RequestCancelExternalWorkflowExecutionInitiated

        public static final EventType RequestCancelExternalWorkflowExecutionInitiated
      • RequestCancelExternalWorkflowExecutionFailed

        public static final EventType RequestCancelExternalWorkflowExecutionFailed
      • ExternalWorkflowExecutionCancelRequested

        public static final EventType ExternalWorkflowExecutionCancelRequested
      • MarkerRecorded

        public static final EventType MarkerRecorded
      • WorkflowExecutionSignaled

        public static final EventType WorkflowExecutionSignaled
      • WorkflowExecutionTerminated

        public static final EventType WorkflowExecutionTerminated
      • WorkflowExecutionContinuedAsNew

        public static final EventType WorkflowExecutionContinuedAsNew
      • StartChildWorkflowExecutionInitiated

        public static final EventType StartChildWorkflowExecutionInitiated
      • StartChildWorkflowExecutionFailed

        public static final EventType StartChildWorkflowExecutionFailed
      • ChildWorkflowExecutionStarted

        public static final EventType ChildWorkflowExecutionStarted
      • ChildWorkflowExecutionCompleted

        public static final EventType ChildWorkflowExecutionCompleted
      • ChildWorkflowExecutionFailed

        public static final EventType ChildWorkflowExecutionFailed
      • ChildWorkflowExecutionCanceled

        public static final EventType ChildWorkflowExecutionCanceled
      • ChildWorkflowExecutionTimedOut

        public static final EventType ChildWorkflowExecutionTimedOut
      • ChildWorkflowExecutionTerminated

        public static final EventType ChildWorkflowExecutionTerminated
      • SignalExternalWorkflowExecutionInitiated

        public static final EventType SignalExternalWorkflowExecutionInitiated
      • SignalExternalWorkflowExecutionFailed

        public static final EventType SignalExternalWorkflowExecutionFailed
      • ExternalWorkflowExecutionSignaled

        public static final EventType ExternalWorkflowExecutionSignaled
      • UpsertWorkflowSearchAttributes

        public static final EventType UpsertWorkflowSearchAttributes
    • Method Detail

      • values

        public static EventType[] 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 (EventType c : EventType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static EventType valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getValue

        public int getValue()
        Get the integer value of this enum value, as defined in the Thrift IDL.
        Specified by:
        getValue in interface org.apache.thrift.TEnum
      • findByValue

        public static EventType findByValue​(int value)
        Find a the enum type by its integer value, as defined in the Thrift IDL.
        Returns:
        null if the value is not found.