Enum PredicateBinaryOp
- java.lang.Object
-
- java.lang.Enum<PredicateBinaryOp>
-
- io.micronaut.data.model.jpa.criteria.impl.predicate.PredicateBinaryOp
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PredicateBinaryOp>
@Internal public enum PredicateBinaryOp extends java.lang.Enum<PredicateBinaryOp>
Predicate binary operations.- Since:
- 3.2
- Author:
- Denis Stepanov
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTAINS
CONTAINS_IGNORE_CASE
ENDS_WITH
ENDS_WITH_IGNORE_CASE
EQUALS
EQUALS_IGNORE_CASE
GREATER_THAN
GREATER_THAN_OR_EQUALS
ILIKE
LESS_THAN
LESS_THAN_OR_EQUALS
LIKE
NOT_EQUALS
NOT_EQUALS_IGNORE_CASE
REGEX
RLIKE
STARTS_WITH
STARTS_WITH_IGNORE_CASE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description PredicateBinaryOp
negate()
static PredicateBinaryOp
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PredicateBinaryOp[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUALS
public static final PredicateBinaryOp EQUALS
-
NOT_EQUALS
public static final PredicateBinaryOp NOT_EQUALS
-
EQUALS_IGNORE_CASE
public static final PredicateBinaryOp EQUALS_IGNORE_CASE
-
NOT_EQUALS_IGNORE_CASE
public static final PredicateBinaryOp NOT_EQUALS_IGNORE_CASE
-
GREATER_THAN
public static final PredicateBinaryOp GREATER_THAN
-
GREATER_THAN_OR_EQUALS
public static final PredicateBinaryOp GREATER_THAN_OR_EQUALS
-
LESS_THAN
public static final PredicateBinaryOp LESS_THAN
-
LESS_THAN_OR_EQUALS
public static final PredicateBinaryOp LESS_THAN_OR_EQUALS
-
RLIKE
public static final PredicateBinaryOp RLIKE
-
ILIKE
public static final PredicateBinaryOp ILIKE
-
LIKE
public static final PredicateBinaryOp LIKE
-
REGEX
public static final PredicateBinaryOp REGEX
-
CONTAINS
public static final PredicateBinaryOp CONTAINS
-
CONTAINS_IGNORE_CASE
public static final PredicateBinaryOp CONTAINS_IGNORE_CASE
-
STARTS_WITH
public static final PredicateBinaryOp STARTS_WITH
-
ENDS_WITH
public static final PredicateBinaryOp ENDS_WITH
-
STARTS_WITH_IGNORE_CASE
public static final PredicateBinaryOp STARTS_WITH_IGNORE_CASE
-
ENDS_WITH_IGNORE_CASE
public static final PredicateBinaryOp ENDS_WITH_IGNORE_CASE
-
-
Method Detail
-
values
public static PredicateBinaryOp[] 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 (PredicateBinaryOp c : PredicateBinaryOp.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PredicateBinaryOp 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
-
negate
@Nullable public PredicateBinaryOp negate()
-
-