public static enum Replicator.State extends Enum<Replicator.State>
| Enum Constant and Description |
|---|
Created |
Destroyed |
Probe |
Replicate |
Snapshot |
| Modifier and Type | Method and Description |
|---|---|
static Replicator.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Replicator.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Replicator.State Created
public static final Replicator.State Probe
public static final Replicator.State Snapshot
public static final Replicator.State Replicate
public static final Replicator.State Destroyed
public static Replicator.State[] values()
for (Replicator.State c : Replicator.State.values()) System.out.println(c);
public static Replicator.State 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 © 2024. All rights reserved.