Package ai.extend.types
Enum ParseRunSource.Value
- java.lang.Object
-
- java.lang.Enum<ParseRunSource.Value>
-
- ai.extend.types.ParseRunSource.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ParseRunSource.Value>
- Enclosing class:
- ParseRunSource
public static enum ParseRunSource.Value extends java.lang.Enum<ParseRunSource.Value>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADMINAPIBATCH_PARSER_RUNDOCUMENT_PROCESSOR_RUNEDIT_RUNSTUDIOUNKNOWNWORKFLOW_RUN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ParseRunSource.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ParseRunSource.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
API
public static final ParseRunSource.Value API
-
STUDIO
public static final ParseRunSource.Value STUDIO
-
WORKFLOW_RUN
public static final ParseRunSource.Value WORKFLOW_RUN
-
ADMIN
public static final ParseRunSource.Value ADMIN
-
BATCH_PARSER_RUN
public static final ParseRunSource.Value BATCH_PARSER_RUN
-
EDIT_RUN
public static final ParseRunSource.Value EDIT_RUN
-
DOCUMENT_PROCESSOR_RUN
public static final ParseRunSource.Value DOCUMENT_PROCESSOR_RUN
-
UNKNOWN
public static final ParseRunSource.Value UNKNOWN
-
-
Method Detail
-
values
public static ParseRunSource.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 (ParseRunSource.Value c : ParseRunSource.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 ParseRunSource.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
-
-