public enum SnapshotReaderStatus extends java.lang.Enum<SnapshotReaderStatus>
| Enum Constant and Description |
|---|
FAILED
Reading snapshot has finished with errors
|
FINISHED
Reading snapshot successfully finished
|
STARTED
Start reading snapshot.
|
STARTING
Start retrieving snapshot data.
|
| Modifier and Type | Method and Description |
|---|---|
static SnapshotReaderStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SnapshotReaderStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SnapshotReaderStatus STARTING
public static final SnapshotReaderStatus STARTED
public static final SnapshotReaderStatus FINISHED
public static final SnapshotReaderStatus FAILED
public static SnapshotReaderStatus[] values()
for (SnapshotReaderStatus c : SnapshotReaderStatus.values()) System.out.println(c);
public static SnapshotReaderStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null