Enum Filter.Operator
- java.lang.Object
-
- java.lang.Enum<Filter.Operator>
-
- org.arvados.client.api.model.argument.Filter.Operator
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Filter.Operator>
- Enclosing class:
- Filter
public static enum Filter.Operator extends java.lang.Enum<Filter.Operator>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EQUALS
EXISTS
ILIKE
IN
IS_A
LESS
LESS_EQUALS
LIKE
MORE
MORE_EQUALS
NOT_EQUALS
NOT_IN
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Filter.Operator
valueOf(java.lang.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
-
LESS
public static final Filter.Operator LESS
-
LESS_EQUALS
public static final Filter.Operator LESS_EQUALS
-
MORE_EQUALS
public static final Filter.Operator MORE_EQUALS
-
MORE
public static final Filter.Operator MORE
-
LIKE
public static final Filter.Operator LIKE
-
ILIKE
public static final Filter.Operator ILIKE
-
EQUALS
public static final Filter.Operator EQUALS
-
NOT_EQUALS
public static final Filter.Operator NOT_EQUALS
-
IN
public static final Filter.Operator IN
-
NOT_IN
public static final Filter.Operator NOT_IN
-
IS_A
public static final Filter.Operator IS_A
-
EXISTS
public static final Filter.Operator EXISTS
-
-
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(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-