public static enum QueryUtils.Comparator extends Enum<QueryUtils.Comparator>
Enum Constant and Description |
---|
Equal |
Greater |
GreaterEq |
In |
Less |
LessEq |
NotEqual |
Range |
Modifier and Type | Method and Description |
---|---|
static QueryUtils.Comparator |
getComparator(String value) |
static QueryUtils.Comparator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryUtils.Comparator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryUtils.Comparator Equal
public static final QueryUtils.Comparator Greater
public static final QueryUtils.Comparator Less
public static final QueryUtils.Comparator NotEqual
public static final QueryUtils.Comparator GreaterEq
public static final QueryUtils.Comparator LessEq
public static final QueryUtils.Comparator In
public static final QueryUtils.Comparator Range
public static QueryUtils.Comparator[] values()
for (QueryUtils.Comparator c : QueryUtils.Comparator.values()) System.out.println(c);
public static QueryUtils.Comparator 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 nullpublic static QueryUtils.Comparator getComparator(String value)
Copyright © 2016. All rights reserved.