public enum SubtaskState extends Enum<SubtaskState>
| Enum Constant and Description |
|---|
COMPLETED
Enum value completed.
|
PREPARING
Enum value preparing.
|
RUNNING
Enum value running.
|
| Modifier and Type | Method and Description |
|---|---|
static SubtaskState |
fromString(String value)
Parses a serialized value to a SubtaskState instance.
|
String |
toString() |
static SubtaskState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SubtaskState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubtaskState PREPARING
public static final SubtaskState RUNNING
public static final SubtaskState COMPLETED
public static SubtaskState[] values()
for (SubtaskState c : SubtaskState.values()) System.out.println(c);
public static SubtaskState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static SubtaskState fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<SubtaskState>Copyright © 2019. All rights reserved.