public enum ReplicationState extends java.lang.Enum<ReplicationState>
| Enum Constant and Description |
|---|
IDLE |
INITIAL |
OFFLINE |
RUNNING |
STOPPED |
STOPPING |
| Modifier and Type | Method and Description |
|---|---|
static ReplicationState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReplicationState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplicationState INITIAL
public static final ReplicationState RUNNING
public static final ReplicationState IDLE
public static final ReplicationState OFFLINE
public static final ReplicationState STOPPING
public static final ReplicationState STOPPED
public static ReplicationState[] values()
for (ReplicationState c : ReplicationState.values()) System.out.println(c);
public static ReplicationState 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