protected static enum SQLSerializer.Stage extends Enum<SQLSerializer.Stage>
Enum Constant and Description |
---|
FROM |
GROUP_BY |
HAVING |
MODIFIERS |
ORDER_BY |
SELECT |
WHERE |
Modifier and Type | Method and Description |
---|---|
static SQLSerializer.Stage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SQLSerializer.Stage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLSerializer.Stage SELECT
public static final SQLSerializer.Stage FROM
public static final SQLSerializer.Stage WHERE
public static final SQLSerializer.Stage GROUP_BY
public static final SQLSerializer.Stage HAVING
public static final SQLSerializer.Stage ORDER_BY
public static final SQLSerializer.Stage MODIFIERS
public static SQLSerializer.Stage[] values()
for (SQLSerializer.Stage c : SQLSerializer.Stage.values()) System.out.println(c);
public static SQLSerializer.Stage 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 © 2007–2016 Querydsl. All rights reserved.