Package adalid.core.enums
Enum ComparisonOp
- java.lang.Object
-
- java.lang.Enum<ComparisonOp>
-
- adalid.core.enums.ComparisonOp
-
- All Implemented Interfaces:
Operator,Serializable,Comparable<ComparisonOp>
public enum ComparisonOp extends Enum<ComparisonOp> implements Operator
- Author:
- Jorge Campins
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ComparisonOpvalueOf(String name)Returns the enum constant of this type with the specified name.static ComparisonOp[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXISTS
public static final ComparisonOp EXISTS
-
NOT_EXISTS
public static final ComparisonOp NOT_EXISTS
-
IS_NULL
public static final ComparisonOp IS_NULL
-
IS_NOT_NULL
public static final ComparisonOp IS_NOT_NULL
-
IS_TRUE
public static final ComparisonOp IS_TRUE
-
IS_FALSE
public static final ComparisonOp IS_FALSE
-
IS_NULL_OR_TRUE
public static final ComparisonOp IS_NULL_OR_TRUE
-
IS_NULL_OR_FALSE
public static final ComparisonOp IS_NULL_OR_FALSE
-
EQ
public static final ComparisonOp EQ
-
NEQ
public static final ComparisonOp NEQ
-
GT
public static final ComparisonOp GT
-
GTEQ
public static final ComparisonOp GTEQ
-
LT
public static final ComparisonOp LT
-
LTEQ
public static final ComparisonOp LTEQ
-
IS_NULL_OR_EQ
public static final ComparisonOp IS_NULL_OR_EQ
-
IS_NULL_OR_NEQ
public static final ComparisonOp IS_NULL_OR_NEQ
-
IS_NULL_OR_GT
public static final ComparisonOp IS_NULL_OR_GT
-
IS_NULL_OR_GTEQ
public static final ComparisonOp IS_NULL_OR_GTEQ
-
IS_NULL_OR_LT
public static final ComparisonOp IS_NULL_OR_LT
-
IS_NULL_OR_LTEQ
public static final ComparisonOp IS_NULL_OR_LTEQ
-
STARTS_WITH
public static final ComparisonOp STARTS_WITH
-
NOT_STARTS_WITH
public static final ComparisonOp NOT_STARTS_WITH
-
CONTAINS
public static final ComparisonOp CONTAINS
-
NOT_CONTAINS
public static final ComparisonOp NOT_CONTAINS
-
ENDS_WITH
public static final ComparisonOp ENDS_WITH
-
NOT_ENDS_WITH
public static final ComparisonOp NOT_ENDS_WITH
-
IS_NULL_OR_STARTS_WITH
public static final ComparisonOp IS_NULL_OR_STARTS_WITH
-
IS_NULL_OR_NOT_STARTS_WITH
public static final ComparisonOp IS_NULL_OR_NOT_STARTS_WITH
-
IS_NULL_OR_CONTAINS
public static final ComparisonOp IS_NULL_OR_CONTAINS
-
IS_NULL_OR_NOT_CONTAINS
public static final ComparisonOp IS_NULL_OR_NOT_CONTAINS
-
IS_NULL_OR_ENDS_WITH
public static final ComparisonOp IS_NULL_OR_ENDS_WITH
-
IS_NULL_OR_NOT_ENDS_WITH
public static final ComparisonOp IS_NULL_OR_NOT_ENDS_WITH
-
IS_IN
public static final ComparisonOp IS_IN
-
IS_NOT_IN
public static final ComparisonOp IS_NOT_IN
-
IS_BETWEEN
public static final ComparisonOp IS_BETWEEN
-
IS_NOT_BETWEEN
public static final ComparisonOp IS_NOT_BETWEEN
-
IS_NULL_OR_IN
public static final ComparisonOp IS_NULL_OR_IN
-
IS_NULL_OR_NOT_IN
public static final ComparisonOp IS_NULL_OR_NOT_IN
-
IS_NULL_OR_BETWEEN
public static final ComparisonOp IS_NULL_OR_BETWEEN
-
IS_NULL_OR_NOT_BETWEEN
public static final ComparisonOp IS_NULL_OR_NOT_BETWEEN
-
-
Method Detail
-
values
public static ComparisonOp[] 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 (ComparisonOp c : ComparisonOp.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ComparisonOp 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
-
-