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