net.aditsu.depeche
public enum Flag extends Enum<Flag>
| Enum Constant and Description |
|---|
CUSTOM_PREPARE
Supports specifying result set features when preparing statements
|
INSERT_RETURNING
INSERT ...
|
LAST_ID
Supports a method to get the last autogenerated number in the session
|
LIMIT
limit() supported
|
OFFSET
offset() supported
|
PARAMETER_INFO
Use ParameterInfo
|
TABLE_INFO
Use TableInfo
|
TIMESTAMPTZ
Supports timestamp with time zone
|
UNTYPED_NULL
Supports null parameters without specifying the sql type
|
| Modifier and Type | Method and Description |
|---|---|
static Flag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Flag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Flag TABLE_INFO
public static final Flag PARAMETER_INFO
public static final Flag LIMIT
public static final Flag OFFSET
public static final Flag LAST_ID
public static final Flag INSERT_RETURNING
public static final Flag UNTYPED_NULL
public static final Flag TIMESTAMPTZ
public static final Flag CUSTOM_PREPARE
public static Flag[] values()
for (Flag c : Flag.values()) System.out.println(c);
public static Flag 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 null