public static enum Replicator.ActivityLevel extends Enum<Replicator.ActivityLevel>
Enum Constant and Description |
---|
BUSY
The replication is actively transferring data.
|
CONNECTING
The replicator is connecting to the remote host.
|
IDLE
The replication is inactive; either waiting for changes or offline as the remote host is
unreachable.
|
OFFLINE
The replicator is offline as the remote host is unreachable.
|
STOPPED
The replication is finished or hit a fatal error.
|
Modifier and Type | Method and Description |
---|---|
static Replicator.ActivityLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Replicator.ActivityLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Replicator.ActivityLevel STOPPED
public static final Replicator.ActivityLevel OFFLINE
public static final Replicator.ActivityLevel CONNECTING
public static final Replicator.ActivityLevel IDLE
public static final Replicator.ActivityLevel BUSY
public static Replicator.ActivityLevel[] values()
for (Replicator.ActivityLevel c : Replicator.ActivityLevel.values()) System.out.println(c);
public static Replicator.ActivityLevel 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