Package com.redhat.cloud.common.filter
Enum Filter.Operator
- java.lang.Object
-
- java.lang.Enum<Filter.Operator>
-
- com.redhat.cloud.common.filter.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 BOOLEAN_ISEQUALILIKELIKENOT_EQUAL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Filter.OperatorfromName(String name)static Filter.OperatorvalueOf(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
-
EQUAL
public static final Filter.Operator EQUAL
-
LIKE
public static final Filter.Operator LIKE
-
ILIKE
public static final Filter.Operator ILIKE
-
NOT_EQUAL
public static final Filter.Operator NOT_EQUAL
-
BOOLEAN_IS
public static final Filter.Operator BOOLEAN_IS
-
-
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
-
fromName
public static Filter.Operator fromName(String name)
-
-