public static enum SqlImplementor.Clause extends Enum<SqlImplementor.Clause>
| Enum Constant and Description |
|---|
FETCH |
FROM |
GROUP_BY |
HAVING |
OFFSET |
ORDER_BY |
SELECT |
SET_OP |
WHERE |
| Modifier and Type | Method and Description |
|---|---|
static SqlImplementor.Clause |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlImplementor.Clause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlImplementor.Clause FROM
public static final SqlImplementor.Clause WHERE
public static final SqlImplementor.Clause GROUP_BY
public static final SqlImplementor.Clause HAVING
public static final SqlImplementor.Clause SELECT
public static final SqlImplementor.Clause SET_OP
public static final SqlImplementor.Clause ORDER_BY
public static final SqlImplementor.Clause FETCH
public static final SqlImplementor.Clause OFFSET
public static SqlImplementor.Clause[] values()
for (SqlImplementor.Clause c : SqlImplementor.Clause.values()) System.out.println(c);
public static SqlImplementor.Clause 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 © 2012–2018 The Apache Software Foundation. All rights reserved.