Package ai.extend.types
Enum WebhookEventWorkflowRunEventType
- java.lang.Object
-
- java.lang.Enum<WebhookEventWorkflowRunEventType>
-
- ai.extend.types.WebhookEventWorkflowRunEventType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<WebhookEventWorkflowRunEventType>
public enum WebhookEventWorkflowRunEventType extends java.lang.Enum<WebhookEventWorkflowRunEventType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description WORKFLOW_RUN_COMPLETEDWORKFLOW_RUN_FAILEDWORKFLOW_RUN_NEEDS_REVIEWWORKFLOW_RUN_REJECTEDWORKFLOW_RUN_STEP_RUN_PROCESSED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()static WebhookEventWorkflowRunEventTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WebhookEventWorkflowRunEventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WORKFLOW_RUN_COMPLETED
public static final WebhookEventWorkflowRunEventType WORKFLOW_RUN_COMPLETED
-
WORKFLOW_RUN_FAILED
public static final WebhookEventWorkflowRunEventType WORKFLOW_RUN_FAILED
-
WORKFLOW_RUN_NEEDS_REVIEW
public static final WebhookEventWorkflowRunEventType WORKFLOW_RUN_NEEDS_REVIEW
-
WORKFLOW_RUN_REJECTED
public static final WebhookEventWorkflowRunEventType WORKFLOW_RUN_REJECTED
-
WORKFLOW_RUN_STEP_RUN_PROCESSED
public static final WebhookEventWorkflowRunEventType WORKFLOW_RUN_STEP_RUN_PROCESSED
-
-
Method Detail
-
values
public static WebhookEventWorkflowRunEventType[] 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 (WebhookEventWorkflowRunEventType c : WebhookEventWorkflowRunEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WebhookEventWorkflowRunEventType 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 namejava.lang.NullPointerException- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<WebhookEventWorkflowRunEventType>
-
-