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