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