Enum Constant and Description |
---|
AUTOINCREMENT |
CHECK |
COLLATE |
CONSTRAINT |
CREATE |
DEFAULT |
DELETE |
DROP |
FOREIGN_KEY |
IF_EXISTS |
IF_NOT_EXISTS |
INDEX |
NOT |
NULL |
ON |
ON_DELETE |
ON_UPDATE |
PRIMARY_KEY |
REFERENCES |
ROWID |
TABLE |
TEMPORARY |
UNIQUE |
WHERE |
WITHOUT |
Modifier and Type | Method and Description |
---|---|
boolean |
equalsName(java.lang.String sqlText) |
java.lang.String |
toString() |
static Keywords |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Keywords[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Keywords TABLE
public static final Keywords CREATE
public static final Keywords DROP
public static final Keywords DELETE
public static final Keywords UNIQUE
public static final Keywords IF_NOT_EXISTS
public static final Keywords IF_EXISTS
public static final Keywords PRIMARY_KEY
public static final Keywords FOREIGN_KEY
public static final Keywords AUTOINCREMENT
public static final Keywords REFERENCES
public static final Keywords ON_UPDATE
public static final Keywords ON_DELETE
public static final Keywords CHECK
public static final Keywords DEFAULT
public static final Keywords COLLATE
public static final Keywords TEMPORARY
public static final Keywords CONSTRAINT
public static final Keywords NOT
public static final Keywords WHERE
public static final Keywords NULL
public static final Keywords ON
public static final Keywords WITHOUT
public static final Keywords ROWID
public static final Keywords INDEX
public static Keywords[] values()
for (Keywords c : Keywords.values()) System.out.println(c);
public static Keywords 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<Keywords>