public enum ReplicationStatusEnum extends java.lang.Enum<ReplicationStatusEnum>
| Enum Constant and Description |
|---|
DISCONNECTED
We get disconnected from the provider
|
REFRESH_REQUIRED
A full refresh should be done
|
STOPPED
The replication has been stopped
|
| Modifier and Type | Method and Description |
|---|---|
static ReplicationStatusEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReplicationStatusEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplicationStatusEnum DISCONNECTED
public static final ReplicationStatusEnum REFRESH_REQUIRED
public static final ReplicationStatusEnum STOPPED
public static ReplicationStatusEnum[] values()
for (ReplicationStatusEnum c : ReplicationStatusEnum.values()) System.out.println(c);
public static ReplicationStatusEnum 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