public enum PostgreSQLKeyword extends Enum<PostgreSQLKeyword> implements Keyword
| Enum Constant and Description |
|---|
ALWAYS |
ARRAY |
CLUSTER |
CONTINUE |
CURRENT |
DEFERRABLE |
DEFERRED |
EXTENDED |
EXTERNAL |
EXTRACT |
FIRST |
IDENTITY |
IMMEDIATE |
INHERIT |
INITIALLY |
LAST |
LIMIT |
MAIN |
NEXT |
NOWAIT |
OFFSET |
OIDS |
ONLY |
OWNER |
PLAIN |
RECURSIVE |
REPLICA |
RESET |
RESTART |
RESTRICT |
RETURNING |
ROWS |
RULE |
SHARE |
SHOW |
STATISTICS |
TYPE |
UNLOGGED |
VALID |
WINDOW |
| Modifier and Type | Method and Description |
|---|---|
static PostgreSQLKeyword |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PostgreSQLKeyword[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PostgreSQLKeyword SHOW
public static final PostgreSQLKeyword ONLY
public static final PostgreSQLKeyword ARRAY
public static final PostgreSQLKeyword FIRST
public static final PostgreSQLKeyword NEXT
public static final PostgreSQLKeyword LAST
public static final PostgreSQLKeyword LIMIT
public static final PostgreSQLKeyword OFFSET
public static final PostgreSQLKeyword RESTART
public static final PostgreSQLKeyword RECURSIVE
public static final PostgreSQLKeyword CURRENT
public static final PostgreSQLKeyword RESTRICT
public static final PostgreSQLKeyword NOWAIT
public static final PostgreSQLKeyword TYPE
public static final PostgreSQLKeyword UNLOGGED
public static final PostgreSQLKeyword CONTINUE
public static final PostgreSQLKeyword RETURNING
public static final PostgreSQLKeyword ROWS
public static final PostgreSQLKeyword SHARE
public static final PostgreSQLKeyword IDENTITY
public static final PostgreSQLKeyword WINDOW
public static final PostgreSQLKeyword STATISTICS
public static final PostgreSQLKeyword RESET
public static final PostgreSQLKeyword PLAIN
public static final PostgreSQLKeyword EXTERNAL
public static final PostgreSQLKeyword EXTENDED
public static final PostgreSQLKeyword MAIN
public static final PostgreSQLKeyword VALID
public static final PostgreSQLKeyword REPLICA
public static final PostgreSQLKeyword ALWAYS
public static final PostgreSQLKeyword RULE
public static final PostgreSQLKeyword CLUSTER
public static final PostgreSQLKeyword OIDS
public static final PostgreSQLKeyword INHERIT
public static final PostgreSQLKeyword OWNER
public static final PostgreSQLKeyword DEFERRABLE
public static final PostgreSQLKeyword INITIALLY
public static final PostgreSQLKeyword DEFERRED
public static final PostgreSQLKeyword IMMEDIATE
public static final PostgreSQLKeyword EXTRACT
public static PostgreSQLKeyword[] values()
for (PostgreSQLKeyword c : PostgreSQLKeyword.values()) System.out.println(c);
public static PostgreSQLKeyword 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 nullCopyright © 2018. All rights reserved.