Package ai.extend.types
Enum WebhookEventEventType
- java.lang.Object
-
- java.lang.Enum<WebhookEventEventType>
-
- ai.extend.types.WebhookEventEventType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<WebhookEventEventType>
public enum WebhookEventEventType extends java.lang.Enum<WebhookEventEventType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()static WebhookEventEventTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WebhookEventEventType[]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 WebhookEventEventType WORKFLOW_RUN_COMPLETED
-
WORKFLOW_RUN_FAILED
public static final WebhookEventEventType WORKFLOW_RUN_FAILED
-
WORKFLOW_RUN_NEEDS_REVIEW
public static final WebhookEventEventType WORKFLOW_RUN_NEEDS_REVIEW
-
WORKFLOW_RUN_REJECTED
public static final WebhookEventEventType WORKFLOW_RUN_REJECTED
-
WORKFLOW_RUN_STEP_RUN_PROCESSED
public static final WebhookEventEventType WORKFLOW_RUN_STEP_RUN_PROCESSED
-
PROCESSOR_RUN_PROCESSED
public static final WebhookEventEventType PROCESSOR_RUN_PROCESSED
-
PROCESSOR_RUN_FAILED
public static final WebhookEventEventType PROCESSOR_RUN_FAILED
-
WORKFLOW_CREATED
public static final WebhookEventEventType WORKFLOW_CREATED
-
WORKFLOW_DEPLOYED
public static final WebhookEventEventType WORKFLOW_DEPLOYED
-
WORKFLOW_DELETED
public static final WebhookEventEventType WORKFLOW_DELETED
-
PROCESSOR_CREATED
public static final WebhookEventEventType PROCESSOR_CREATED
-
PROCESSOR_UPDATED
public static final WebhookEventEventType PROCESSOR_UPDATED
-
PROCESSOR_DELETED
public static final WebhookEventEventType PROCESSOR_DELETED
-
PROCESSOR_DRAFT_UPDATED
public static final WebhookEventEventType PROCESSOR_DRAFT_UPDATED
-
PROCESSOR_VERSION_PUBLISHED
public static final WebhookEventEventType PROCESSOR_VERSION_PUBLISHED
-
PARSER_RUN_PROCESSED
public static final WebhookEventEventType PARSER_RUN_PROCESSED
-
PARSER_RUN_FAILED
public static final WebhookEventEventType PARSER_RUN_FAILED
-
-
Method Detail
-
values
public static WebhookEventEventType[] 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 (WebhookEventEventType c : WebhookEventEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WebhookEventEventType 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<WebhookEventEventType>
-
-