Package ubic.gemma.persistence.util
Enum Filter.Operator
- java.lang.Object
-
- java.lang.Enum<Filter.Operator>
-
- ubic.gemma.persistence.util.Filter.Operator
-
- All Implemented Interfaces:
Serializable
,Comparable<Filter.Operator>
- Enclosing class:
- Filter
public static enum Filter.Operator extends Enum<Filter.Operator>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description eq
greaterOrEq
greaterThan
in
inSubquery
lessOrEq
lessThan
like
notEq
notIn
notInSubquery
notLike
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Filter.Operator
valueOf(String name)
Returns the enum constant of this type with the specified name.static Filter.Operator[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
eq
public static final Filter.Operator eq
-
notEq
public static final Filter.Operator notEq
-
like
public static final Filter.Operator like
-
notLike
public static final Filter.Operator notLike
-
lessThan
public static final Filter.Operator lessThan
-
greaterThan
public static final Filter.Operator greaterThan
-
lessOrEq
public static final Filter.Operator lessOrEq
-
greaterOrEq
public static final Filter.Operator greaterOrEq
-
in
public static final Filter.Operator in
-
notIn
public static final Filter.Operator notIn
-
inSubquery
public static final Filter.Operator inSubquery
-
notInSubquery
public static final Filter.Operator notInSubquery
-
-
Method Detail
-
values
public static Filter.Operator[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Filter.Operator c : Filter.Operator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Filter.Operator valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-