public enum DeferrableOptions extends java.lang.Enum<DeferrableOptions>
Enum Constant and Description |
---|
DEFERRABLE |
DEFERRABLE_INITIALLY_DEFERRED |
DEFERRABLE_INITIALLY_IMMEDIATE |
NOT_DEFERRABLE |
NOT_DEFERRABLE_INITIALLY_DEFERRED |
NOT_DEFERRABLE_INITIALLY_IMMEDIATE |
NOT_SET_IGNORE_OPTION
Default option, when on than would be used defined string\numeric\blob literal or signed integer
|
Modifier and Type | Method and Description |
---|---|
boolean |
equalsName(java.lang.String sqlText) |
java.lang.String |
toString() |
static DeferrableOptions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeferrableOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeferrableOptions DEFERRABLE_INITIALLY_DEFERRED
public static final DeferrableOptions NOT_DEFERRABLE_INITIALLY_DEFERRED
public static final DeferrableOptions NOT_DEFERRABLE_INITIALLY_IMMEDIATE
public static final DeferrableOptions NOT_DEFERRABLE
public static final DeferrableOptions DEFERRABLE_INITIALLY_IMMEDIATE
public static final DeferrableOptions DEFERRABLE
public static final DeferrableOptions NOT_SET_IGNORE_OPTION
public static DeferrableOptions[] values()
for (DeferrableOptions c : DeferrableOptions.values()) System.out.println(c);
public static DeferrableOptions 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 nullpublic boolean equalsName(java.lang.String sqlText)
public java.lang.String toString()
toString
in class java.lang.Enum<DeferrableOptions>