public enum WriteTypePrime extends java.lang.Enum<WriteTypePrime>
| Enum Constant and Description |
|---|
BATCH |
BATCH_LOG |
CAS |
COUNTER |
SIMPLE |
UNLOGGED_BATCH |
| Modifier and Type | Method and Description |
|---|---|
static WriteTypePrime |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WriteTypePrime[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WriteTypePrime SIMPLE
public static final WriteTypePrime BATCH
public static final WriteTypePrime UNLOGGED_BATCH
public static final WriteTypePrime COUNTER
public static final WriteTypePrime BATCH_LOG
public static final WriteTypePrime CAS
public static WriteTypePrime[] values()
for (WriteTypePrime c : WriteTypePrime.values()) System.out.println(c);
public static WriteTypePrime 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