Package dev.restate.sdk.workflow
Enum WorkflowExecutionState
- java.lang.Object
-
- java.lang.Enum<WorkflowExecutionState>
-
- dev.restate.sdk.workflow.WorkflowExecutionState
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<WorkflowExecutionState>
public enum WorkflowExecutionState extends java.lang.Enum<WorkflowExecutionState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALREADY_COMPLETEDALREADY_STARTEDSTARTED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WorkflowExecutionStatevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static WorkflowExecutionState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STARTED
public static final WorkflowExecutionState STARTED
-
ALREADY_STARTED
public static final WorkflowExecutionState ALREADY_STARTED
-
ALREADY_COMPLETED
public static final WorkflowExecutionState ALREADY_COMPLETED
-
-
Method Detail
-
values
public static WorkflowExecutionState[] 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 (WorkflowExecutionState c : WorkflowExecutionState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WorkflowExecutionState 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
-
-