Package ai.extend.types
Enum WebhookEndpointEventType.Value
- java.lang.Object
-
- java.lang.Enum<WebhookEndpointEventType.Value>
-
- ai.extend.types.WebhookEndpointEventType.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<WebhookEndpointEventType.Value>
- Enclosing class:
- WebhookEndpointEventType
public static enum WebhookEndpointEventType.Value extends java.lang.Enum<WebhookEndpointEventType.Value>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WebhookEndpointEventType.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WebhookEndpointEventType.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PARSE_RUN_PROCESSED
public static final WebhookEndpointEventType.Value PARSE_RUN_PROCESSED
-
PARSE_RUN_FAILED
public static final WebhookEndpointEventType.Value PARSE_RUN_FAILED
-
EDIT_RUN_PROCESSED
public static final WebhookEndpointEventType.Value EDIT_RUN_PROCESSED
-
EDIT_RUN_FAILED
public static final WebhookEndpointEventType.Value EDIT_RUN_FAILED
-
EXTRACT_RUN_PROCESSED
public static final WebhookEndpointEventType.Value EXTRACT_RUN_PROCESSED
-
EXTRACT_RUN_FAILED
public static final WebhookEndpointEventType.Value EXTRACT_RUN_FAILED
-
CLASSIFY_RUN_PROCESSED
public static final WebhookEndpointEventType.Value CLASSIFY_RUN_PROCESSED
-
CLASSIFY_RUN_FAILED
public static final WebhookEndpointEventType.Value CLASSIFY_RUN_FAILED
-
SPLIT_RUN_PROCESSED
public static final WebhookEndpointEventType.Value SPLIT_RUN_PROCESSED
-
SPLIT_RUN_FAILED
public static final WebhookEndpointEventType.Value SPLIT_RUN_FAILED
-
BATCH_PROCESSOR_RUN_PROCESSED
public static final WebhookEndpointEventType.Value BATCH_PROCESSOR_RUN_PROCESSED
-
BATCH_PROCESSOR_RUN_FAILED
public static final WebhookEndpointEventType.Value BATCH_PROCESSOR_RUN_FAILED
-
BATCH_PARSE_RUN_PROCESSED
public static final WebhookEndpointEventType.Value BATCH_PARSE_RUN_PROCESSED
-
BATCH_PARSE_RUN_FAILED
public static final WebhookEndpointEventType.Value BATCH_PARSE_RUN_FAILED
-
EXTRACTOR_CREATED
public static final WebhookEndpointEventType.Value EXTRACTOR_CREATED
-
EXTRACTOR_UPDATED
public static final WebhookEndpointEventType.Value EXTRACTOR_UPDATED
-
EXTRACTOR_DELETED
public static final WebhookEndpointEventType.Value EXTRACTOR_DELETED
-
EXTRACTOR_DRAFT_UPDATED
public static final WebhookEndpointEventType.Value EXTRACTOR_DRAFT_UPDATED
-
EXTRACTOR_VERSION_PUBLISHED
public static final WebhookEndpointEventType.Value EXTRACTOR_VERSION_PUBLISHED
-
CLASSIFIER_CREATED
public static final WebhookEndpointEventType.Value CLASSIFIER_CREATED
-
CLASSIFIER_UPDATED
public static final WebhookEndpointEventType.Value CLASSIFIER_UPDATED
-
CLASSIFIER_DELETED
public static final WebhookEndpointEventType.Value CLASSIFIER_DELETED
-
CLASSIFIER_DRAFT_UPDATED
public static final WebhookEndpointEventType.Value CLASSIFIER_DRAFT_UPDATED
-
CLASSIFIER_VERSION_PUBLISHED
public static final WebhookEndpointEventType.Value CLASSIFIER_VERSION_PUBLISHED
-
SPLITTER_CREATED
public static final WebhookEndpointEventType.Value SPLITTER_CREATED
-
SPLITTER_UPDATED
public static final WebhookEndpointEventType.Value SPLITTER_UPDATED
-
SPLITTER_DELETED
public static final WebhookEndpointEventType.Value SPLITTER_DELETED
-
SPLITTER_DRAFT_UPDATED
public static final WebhookEndpointEventType.Value SPLITTER_DRAFT_UPDATED
-
SPLITTER_VERSION_PUBLISHED
public static final WebhookEndpointEventType.Value SPLITTER_VERSION_PUBLISHED
-
WORKFLOW_CREATED
public static final WebhookEndpointEventType.Value WORKFLOW_CREATED
-
WORKFLOW_DEPLOYED
public static final WebhookEndpointEventType.Value WORKFLOW_DEPLOYED
-
WORKFLOW_DELETED
public static final WebhookEndpointEventType.Value WORKFLOW_DELETED
-
UNKNOWN
public static final WebhookEndpointEventType.Value UNKNOWN
-
-
Method Detail
-
values
public static WebhookEndpointEventType.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 (WebhookEndpointEventType.Value c : WebhookEndpointEventType.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 WebhookEndpointEventType.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
-
-