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