Enum QueryParameter.Operator
- java.lang.Object
-
- java.lang.Enum<QueryParameter.Operator>
-
- com.flowable.serviceregistry.engine.impl.invoker.db.QueryParameter.Operator
-
- All Implemented Interfaces:
Serializable
,Comparable<QueryParameter.Operator>
- Enclosing class:
- QueryParameter
public static enum QueryParameter.Operator extends Enum<QueryParameter.Operator>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EQUALS
EQUALS_IGNORE_CASE
GREATER_THAN
GREATER_THAN_OR_EQUALS
IN
IN_WITH_JOIN
LESS_THAN
LESS_THAN_OR_EQUALS
LIKE
LIKE_IGNORE_CASE
NOT_EQUALS
NOT_EQUALS_IGNORE_CASE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static QueryParameter.Operator
from(String value)
String
getSign()
static QueryParameter.Operator
valueOf(String name)
Returns the enum constant of this type with the specified name.static QueryParameter.Operator[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUALS
public static final QueryParameter.Operator EQUALS
-
EQUALS_IGNORE_CASE
public static final QueryParameter.Operator EQUALS_IGNORE_CASE
-
NOT_EQUALS
public static final QueryParameter.Operator NOT_EQUALS
-
NOT_EQUALS_IGNORE_CASE
public static final QueryParameter.Operator NOT_EQUALS_IGNORE_CASE
-
LESS_THAN
public static final QueryParameter.Operator LESS_THAN
-
LESS_THAN_OR_EQUALS
public static final QueryParameter.Operator LESS_THAN_OR_EQUALS
-
GREATER_THAN
public static final QueryParameter.Operator GREATER_THAN
-
GREATER_THAN_OR_EQUALS
public static final QueryParameter.Operator GREATER_THAN_OR_EQUALS
-
LIKE
public static final QueryParameter.Operator LIKE
-
LIKE_IGNORE_CASE
public static final QueryParameter.Operator LIKE_IGNORE_CASE
-
IN
public static final QueryParameter.Operator IN
-
IN_WITH_JOIN
public static final QueryParameter.Operator IN_WITH_JOIN
-
-
Method Detail
-
values
public static QueryParameter.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 (QueryParameter.Operator c : QueryParameter.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 QueryParameter.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
-
getSign
public String getSign()
-
from
public static QueryParameter.Operator from(String value)
-
-