public enum DropletState extends Enum<DropletState>
Package| Enum Constant and Description |
|---|
COPYING
The copying state
|
EXPIRED
The expired state
|
FAILED
The failed state
|
STAGED
The staged state
|
| Modifier and Type | Method and Description |
|---|---|
static DropletState |
from(String s) |
String |
getValue() |
String |
toString() |
static DropletState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DropletState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DropletState COPYING
public static final DropletState EXPIRED
public static final DropletState FAILED
public static final DropletState STAGED
public static DropletState[] values()
for (DropletState c : DropletState.values()) System.out.println(c);
public static DropletState 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 DropletState from(String s)
public String getValue()
public String toString()
toString in class Enum<DropletState>Copyright © 2020. All rights reserved.