public enum SQLClauseType extends Enum<SQLClauseType>
| Enum Constant and Description |
|---|
FROM |
GROUP_BY |
JOIN |
LIMIT |
OFFSET |
ORDER_BY |
WHERE |
| Modifier and Type | Method and Description |
|---|---|
static SQLClauseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SQLClauseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLClauseType FROM
public static final SQLClauseType JOIN
public static final SQLClauseType GROUP_BY
public static final SQLClauseType LIMIT
public static final SQLClauseType ORDER_BY
public static final SQLClauseType OFFSET
public static final SQLClauseType WHERE
public static SQLClauseType[] values()
for (SQLClauseType c : SQLClauseType.values()) System.out.println(c);
public static SQLClauseType 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
jataylor@hairyfatguy.com