public enum UserQueryParamType extends Enum<UserQueryParamType>
| Enum Constant and Description |
|---|
COLUMNS
Column names
|
COLUMNS_AS
Columns as values
|
DISTINCT
Distinct flag
|
GROUP_BY
Group by
|
HAVING
Having
|
LIMIT
Limit
|
ORDER_BY
Order by
|
SELECTION
Selection
|
SELECTION_ARGS
Selection arguments
|
SQL
Raw SQL string
|
TABLE
Table name
|
| Modifier and Type | Method and Description |
|---|---|
static UserQueryParamType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserQueryParamType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserQueryParamType SQL
public static final UserQueryParamType DISTINCT
public static final UserQueryParamType TABLE
public static final UserQueryParamType COLUMNS
public static final UserQueryParamType COLUMNS_AS
public static final UserQueryParamType SELECTION
public static final UserQueryParamType SELECTION_ARGS
public static final UserQueryParamType GROUP_BY
public static final UserQueryParamType HAVING
public static final UserQueryParamType ORDER_BY
public static final UserQueryParamType LIMIT
public static UserQueryParamType[] values()
for (UserQueryParamType c : UserQueryParamType.values()) System.out.println(c);
public static UserQueryParamType 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