public enum ReplicationStatusEnum extends 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(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(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 nullCopyright © 2003–2015 The Apache Software Foundation. All rights reserved.