Enum Constant and Description |
---|
COMPUTE |
FINISH |
INIT |
READ_MESSAGE |
RESULT |
WRITE_FILE |
WRITE_MESSAGE |
WRITE_PROPERTY |
Modifier and Type | Method and Description |
---|---|
static TaskStage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TaskStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskStage INIT
public static final TaskStage COMPUTE
public static final TaskStage RESULT
public static final TaskStage WRITE_FILE
public static final TaskStage WRITE_MESSAGE
public static final TaskStage READ_MESSAGE
public static final TaskStage WRITE_PROPERTY
public static final TaskStage FINISH
public static TaskStage[] values()
for (TaskStage c : TaskStage.values()) System.out.println(c);
public static TaskStage valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null