public enum StartTaskState extends Enum<StartTaskState>
Enum Constant and Description |
---|
COMPLETED
Enum value completed.
|
RUNNING
Enum value running.
|
Modifier and Type | Method and Description |
---|---|
static StartTaskState |
fromString(String value)
Parses a serialized value to a StartTaskState instance.
|
String |
toString() |
static StartTaskState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StartTaskState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StartTaskState RUNNING
public static final StartTaskState COMPLETED
public static StartTaskState[] values()
for (StartTaskState c : StartTaskState.values()) System.out.println(c);
public static StartTaskState 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 StartTaskState fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<StartTaskState>
Copyright © 2019. All rights reserved.