Package org.teiid.query.tempdata
Enum TempTableStore.TransactionMode
- java.lang.Object
-
- java.lang.Enum<TempTableStore.TransactionMode>
-
- org.teiid.query.tempdata.TempTableStore.TransactionMode
-
- All Implemented Interfaces:
Serializable
,Comparable<TempTableStore.TransactionMode>
- Enclosing class:
- TempTableStore
public static enum TempTableStore.TransactionMode extends Enum<TempTableStore.TransactionMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ISOLATE_READS
ISOLATE_WRITES
NONE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
ISOLATE_READS
public static final TempTableStore.TransactionMode ISOLATE_READS
-
ISOLATE_WRITES
public static final TempTableStore.TransactionMode ISOLATE_WRITES
-
NONE
public static final TempTableStore.TransactionMode NONE
-
-
Method Detail
-
values
public static TempTableStore.TransactionMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TempTableStore.TransactionMode c : TempTableStore.TransactionMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TempTableStore.TransactionMode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-