public static enum SelectDescriptor.Key extends java.lang.Enum<SelectDescriptor.Key>
| Enum Constant and Description |
|---|
EXCEPT
Key for EXCEPT part of the SQL
|
FROM
Key for FROM part of the SQL
|
GROUPBY
Key for GROUPBY part of the SQL
|
HAVING
Key for HAVING part of the SQL
|
INTERSECT
Key for INTERSECT part of the SQL
|
JOIN
Key for JOIN part of the SQL
|
LIMIT
Key for LIMIT part of SQL
|
ORDERBY
Key for ORDERBY part of the SQL
|
SELECT
Key for select (aka columns) part of the SQL
|
UNION
Key for UNION part of the SQL
|
WHERE
Key for WHERE part of the SQL
|
| Modifier and Type | Method and Description |
|---|---|
static SelectDescriptor.Key |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SelectDescriptor.Key[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SelectDescriptor.Key SELECT
public static final SelectDescriptor.Key FROM
public static final SelectDescriptor.Key JOIN
public static final SelectDescriptor.Key WHERE
public static final SelectDescriptor.Key GROUPBY
public static final SelectDescriptor.Key HAVING
public static final SelectDescriptor.Key ORDERBY
public static final SelectDescriptor.Key UNION
public static final SelectDescriptor.Key EXCEPT
public static final SelectDescriptor.Key INTERSECT
public static final SelectDescriptor.Key LIMIT
public static SelectDescriptor.Key[] values()
for (SelectDescriptor.Key c : SelectDescriptor.Key.values()) System.out.println(c);
public static SelectDescriptor.Key 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 null