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