public enum Keyword extends Enum<Keyword>
Modifier and Type | Method and Description |
---|---|
static Keyword |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Keyword[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Keyword BIGINT
public static final Keyword BINARY
public static final Keyword BLOB
public static final Keyword BOOLEAN
public static final Keyword CLOB
public static final Keyword DATE
public static final Keyword DECIMAL
public static final Keyword FLOAT
public static final Keyword INTEGER
public static final Keyword REAL
public static final Keyword SMALLINT
public static final Keyword TEXT
public static final Keyword TIME
public static final Keyword TIMESTAMP
public static final Keyword TINYINT
public static final Keyword VARBINARY
public static final Keyword VARCHAR
public static final Keyword NVARCHAR
public static final Keyword ABORT
public static final Keyword ACTION
public static final Keyword ADD
public static final Keyword AFTER
public static final Keyword ALL
public static final Keyword ALTER
public static final Keyword ALWAYS
public static final Keyword ANALYZE
public static final Keyword AND
public static final Keyword AS
public static final Keyword ASC
public static final Keyword ATTACH
public static final Keyword AUTOINCREMENT
public static final Keyword BEFORE
public static final Keyword BEGIN
public static final Keyword BETWEEN
public static final Keyword BY
public static final Keyword CASCADE
public static final Keyword CASE
public static final Keyword CAST
public static final Keyword CHECK
public static final Keyword COLLATE
public static final Keyword COLUMN
public static final Keyword COMMIT
public static final Keyword CONFLICT
public static final Keyword CONSTRAINT
public static final Keyword COUNT
public static final Keyword CREATE
public static final Keyword CROSS
public static final Keyword CURRENT_DATE
public static final Keyword CURRENT_TIME
public static final Keyword CURRENT_TIMESTAMP
public static final Keyword DATABASE
public static final Keyword DEFAULT
public static final Keyword DEFERRABLE
public static final Keyword DEFERRED
public static final Keyword DELETE
public static final Keyword DESC
public static final Keyword DETACH
public static final Keyword DISTINCT
public static final Keyword DO
public static final Keyword DUPLICATE
public static final Keyword DROP
public static final Keyword EACH
public static final Keyword ELSE
public static final Keyword END
public static final Keyword ESCAPE
public static final Keyword EXCEPT
public static final Keyword EXCLUSIVE
public static final Keyword EXISTS
public static final Keyword EXPLAIN
public static final Keyword FAIL
public static final Keyword FETCH
public static final Keyword FIRST
public static final Keyword FOR
public static final Keyword FOREIGN
public static final Keyword FROM
public static final Keyword FULL
public static final Keyword GENERATED
public static final Keyword GLOB
public static final Keyword GROUP
public static final Keyword HAVING
public static final Keyword IDENTITY
public static final Keyword IF
public static final Keyword IGNORE
public static final Keyword IMMEDIATE
public static final Keyword IN
public static final Keyword INCREMENT
public static final Keyword INDEX
public static final Keyword INDEXED
public static final Keyword INITIALLY
public static final Keyword INNER
public static final Keyword INSERT
public static final Keyword INSTEAD
public static final Keyword INTERSECT
public static final Keyword INTO
public static final Keyword IS
public static final Keyword ISNULL
public static final Keyword JOIN
public static final Keyword KEY
public static final Keyword LAST
public static final Keyword LEFT
public static final Keyword LIKE
public static final Keyword LIMIT
public static final Keyword MATCH
public static final Keyword MATCHED
public static final Keyword MERGE
public static final Keyword NATURAL
public static final Keyword NEXT
public static final Keyword NO
public static final Keyword NOT
public static final Keyword NOTNULL
public static final Keyword NULL
public static final Keyword NULLS
public static final Keyword OF
public static final Keyword OFFSET
public static final Keyword ON
public static final Keyword ONLY
public static final Keyword OR
public static final Keyword ORDER
public static final Keyword OUTER
public static final Keyword PLAN
public static final Keyword PRAGMA
public static final Keyword PRIMARY
public static final Keyword QUERY
public static final Keyword RAISE
public static final Keyword RECURSIVE
public static final Keyword REFERENCES
public static final Keyword REGEXP
public static final Keyword REINDEX
public static final Keyword RELEASE
public static final Keyword RENAME
public static final Keyword REPLACE
public static final Keyword RESTRICT
public static final Keyword RIGHT
public static final Keyword ROLLBACK
public static final Keyword ROW
public static final Keyword ROWS
public static final Keyword SAVEPOINT
public static final Keyword SELECT
public static final Keyword SET
public static final Keyword SEQUENCE
public static final Keyword START
public static final Keyword TABLE
public static final Keyword TEMP
public static final Keyword TEMPORARY
public static final Keyword THEN
public static final Keyword TO
public static final Keyword TRANSACTION
public static final Keyword TRIGGER
public static final Keyword TRUNCATE
public static final Keyword UNION
public static final Keyword UNIQUE
public static final Keyword UPDATE
public static final Keyword USING
public static final Keyword VACUUM
public static final Keyword VALUES
public static final Keyword VIEW
public static final Keyword VIRTUAL
public static final Keyword WHEN
public static final Keyword WHERE
public static final Keyword WITH
public static final Keyword WITHOUT
public static Keyword[] values()
for (Keyword c : Keyword.values()) System.out.println(c);
public static Keyword 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