Package org.hotrod.dynamicsql.insert
Enum PrimaryKeyRetrievalMode
- java.lang.Object
-
- java.lang.Enum<PrimaryKeyRetrievalMode>
-
- org.hotrod.dynamicsql.insert.PrimaryKeyRetrievalMode
-
- All Implemented Interfaces:
Serializable,Comparable<PrimaryKeyRetrievalMode>
public enum PrimaryKeyRetrievalMode extends Enum<PrimaryKeyRetrievalMode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description InsertExecutorgetInsertExecutor()static PrimaryKeyRetrievalModevalueOf(String name)Returns the enum constant of this type with the specified name.static PrimaryKeyRetrievalMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_RETRIEVAL
public static final PrimaryKeyRetrievalMode NO_RETRIEVAL
-
IDENTITY_INLINE_KEYS_RESULTSET
public static final PrimaryKeyRetrievalMode IDENTITY_INLINE_KEYS_RESULTSET
-
IDENTITY_INLINE_STANDARD_RESULTSET
public static final PrimaryKeyRetrievalMode IDENTITY_INLINE_STANDARD_RESULTSET
-
IDENTITY_POSTFETCH
public static final PrimaryKeyRetrievalMode IDENTITY_POSTFETCH
-
SEQUENCE_PREFETCH
public static final PrimaryKeyRetrievalMode SEQUENCE_PREFETCH
-
SEQUENCE_INLINE_KEYS_RESULTSET
public static final PrimaryKeyRetrievalMode SEQUENCE_INLINE_KEYS_RESULTSET
-
SEQUENCE_INLINE_STANDARD_RESULTSET
public static final PrimaryKeyRetrievalMode SEQUENCE_INLINE_STANDARD_RESULTSET
-
SEQUENCE_POSTFETCH
public static final PrimaryKeyRetrievalMode SEQUENCE_POSTFETCH
-
-
Method Detail
-
values
public static PrimaryKeyRetrievalMode[] 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 (PrimaryKeyRetrievalMode c : PrimaryKeyRetrievalMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PrimaryKeyRetrievalMode 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
-
getInsertExecutor
public InsertExecutor getInsertExecutor()
-
-