Package io.zeebe.engine.state.instance
Enum JobState.State
- java.lang.Object
-
- java.lang.Enum<JobState.State>
-
- io.zeebe.engine.state.instance.JobState.State
-
- All Implemented Interfaces:
Serializable,Comparable<JobState.State>
- Enclosing class:
- JobState
public static enum JobState.State extends Enum<JobState.State>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVATABLEACTIVATEDERROR_THROWNFAILEDNOT_FOUND
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JobState.StatevalueOf(String name)Returns the enum constant of this type with the specified name.static JobState.State[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTIVATABLE
public static final JobState.State ACTIVATABLE
-
ACTIVATED
public static final JobState.State ACTIVATED
-
FAILED
public static final JobState.State FAILED
-
NOT_FOUND
public static final JobState.State NOT_FOUND
-
ERROR_THROWN
public static final JobState.State ERROR_THROWN
-
-
Method Detail
-
values
public static JobState.State[] 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 (JobState.State c : JobState.State.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JobState.State 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
-
-