Package ai.extend.types
Enum WebhookSubscriptionEventType.Value
- java.lang.Object
-
- java.lang.Enum<WebhookSubscriptionEventType.Value>
-
- ai.extend.types.WebhookSubscriptionEventType.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<WebhookSubscriptionEventType.Value>
- Enclosing class:
- WebhookSubscriptionEventType
public static enum WebhookSubscriptionEventType.Value extends java.lang.Enum<WebhookSubscriptionEventType.Value>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WebhookSubscriptionEventType.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WebhookSubscriptionEventType.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXTRACT_RUN_PROCESSED
public static final WebhookSubscriptionEventType.Value EXTRACT_RUN_PROCESSED
-
EXTRACT_RUN_FAILED
public static final WebhookSubscriptionEventType.Value EXTRACT_RUN_FAILED
-
CLASSIFY_RUN_PROCESSED
public static final WebhookSubscriptionEventType.Value CLASSIFY_RUN_PROCESSED
-
CLASSIFY_RUN_FAILED
public static final WebhookSubscriptionEventType.Value CLASSIFY_RUN_FAILED
-
SPLIT_RUN_PROCESSED
public static final WebhookSubscriptionEventType.Value SPLIT_RUN_PROCESSED
-
SPLIT_RUN_FAILED
public static final WebhookSubscriptionEventType.Value SPLIT_RUN_FAILED
-
BATCH_PROCESSOR_RUN_PROCESSED
public static final WebhookSubscriptionEventType.Value BATCH_PROCESSOR_RUN_PROCESSED
-
BATCH_PROCESSOR_RUN_FAILED
public static final WebhookSubscriptionEventType.Value BATCH_PROCESSOR_RUN_FAILED
-
WORKFLOW_RUN_COMPLETED
public static final WebhookSubscriptionEventType.Value WORKFLOW_RUN_COMPLETED
-
WORKFLOW_RUN_FAILED
public static final WebhookSubscriptionEventType.Value WORKFLOW_RUN_FAILED
-
WORKFLOW_RUN_NEEDS_REVIEW
public static final WebhookSubscriptionEventType.Value WORKFLOW_RUN_NEEDS_REVIEW
-
WORKFLOW_RUN_REJECTED
public static final WebhookSubscriptionEventType.Value WORKFLOW_RUN_REJECTED
-
WORKFLOW_RUN_CANCELLED
public static final WebhookSubscriptionEventType.Value WORKFLOW_RUN_CANCELLED
-
WORKFLOW_RUN_STEP_RUN_PROCESSED
public static final WebhookSubscriptionEventType.Value WORKFLOW_RUN_STEP_RUN_PROCESSED
-
UNKNOWN
public static final WebhookSubscriptionEventType.Value UNKNOWN
-
-
Method Detail
-
values
public static WebhookSubscriptionEventType.Value[] 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 (WebhookSubscriptionEventType.Value c : WebhookSubscriptionEventType.Value.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WebhookSubscriptionEventType.Value 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
-
-