public static enum QueryBuilder.StringOrder extends java.lang.Enum<QueryBuilder.StringOrder>
Enum Constant and Description |
---|
CASE_INSENSITIVE
The default: case insensitive ASCII characters
|
CASE_SENSITIVE
Case matters ('a' != 'A').
|
Modifier and Type | Method and Description |
---|---|
static QueryBuilder.StringOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QueryBuilder.StringOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryBuilder.StringOrder CASE_INSENSITIVE
public static final QueryBuilder.StringOrder CASE_SENSITIVE
public static QueryBuilder.StringOrder[] values()
for (QueryBuilder.StringOrder c : QueryBuilder.StringOrder.values()) System.out.println(c);
public static QueryBuilder.StringOrder valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null