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