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