public enum ProcessingStatus extends Enum<ProcessingStatus>
| Modifier and Type | Method and Description |
|---|---|
static ProcessingStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessingStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessingStatus CREATING
public static final ProcessingStatus AVAILABLE
public static final ProcessingStatus UPDATING
public static ProcessingStatus[] values()
for (ProcessingStatus c : ProcessingStatus.values()) System.out.println(c);
public static ProcessingStatus 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 null