public static enum Constants.RequestedState extends Enum<Constants.RequestedState>
| Enum Constant and Description |
|---|
AVAILABLE |
DELETED |
STOPPED |
UNAVAILABLE |
| Modifier and Type | Method and Description |
|---|---|
static Constants.RequestedState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.RequestedState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.RequestedState AVAILABLE
public static final Constants.RequestedState STOPPED
public static final Constants.RequestedState UNAVAILABLE
public static final Constants.RequestedState DELETED
public static Constants.RequestedState[] values()
for (Constants.RequestedState c : Constants.RequestedState.values()) System.out.println(c);
public static Constants.RequestedState 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 nullCopyright © 2015. All rights reserved.