public enum ReplicatorActivityLevel extends Enum<ReplicatorActivityLevel>
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 ReplicatorActivityLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReplicatorActivityLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplicatorActivityLevel STOPPED
public static final ReplicatorActivityLevel OFFLINE
public static final ReplicatorActivityLevel CONNECTING
public static final ReplicatorActivityLevel IDLE
public static final ReplicatorActivityLevel BUSY
public static ReplicatorActivityLevel[] values()
for (ReplicatorActivityLevel c : ReplicatorActivityLevel.values()) System.out.println(c);
public static ReplicatorActivityLevel 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