public static enum MercurySyncState.State extends java.lang.Enum<MercurySyncState.State>
| Enum Constant and Description |
|---|
PARALLEL_FIRST_STAGE |
PARALLEL_SECOND_STAGE |
READ_ONLY |
SERIAL |
| Modifier and Type | Method and Description |
|---|---|
static MercurySyncState.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MercurySyncState.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="ReadOnly") public static final MercurySyncState.State READ_ONLY
@SerializedName(value="Serial") public static final MercurySyncState.State SERIAL
@SerializedName(value="ParallelFirstStage") public static final MercurySyncState.State PARALLEL_FIRST_STAGE
@SerializedName(value="ParallelSecondStage") public static final MercurySyncState.State PARALLEL_SECOND_STAGE
public static MercurySyncState.State[] values()
for (MercurySyncState.State c : MercurySyncState.State.values()) System.out.println(c);
public static MercurySyncState.State valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null