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