Package com.mindee.parsing.common
Enum ExecutionPriority
- java.lang.Object
-
- java.lang.Enum<ExecutionPriority>
-
- com.mindee.parsing.common.ExecutionPriority
-
- All Implemented Interfaces:
Serializable
,Comparable<ExecutionPriority>
public enum ExecutionPriority extends Enum<ExecutionPriority>
Execution priority for a workflow.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getValue()
static ExecutionPriority
valueOf(String name)
Returns the enum constant of this type with the specified name.static ExecutionPriority[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOW
public static final ExecutionPriority LOW
-
MEDIUM
public static final ExecutionPriority MEDIUM
-
HIGH
public static final ExecutionPriority HIGH
-
-
Method Detail
-
values
public static ExecutionPriority[] 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 (ExecutionPriority c : ExecutionPriority.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExecutionPriority valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public String getValue()
-
-