Enum QueryVariable.QueryVariableOperation
- java.lang.Object
-
- java.lang.Enum<QueryVariable.QueryVariableOperation>
-
- org.flowable.cmmn.rest.service.api.engine.variable.QueryVariable.QueryVariableOperation
-
- All Implemented Interfaces:
Serializable,Comparable<QueryVariable.QueryVariableOperation>
- Enclosing class:
- QueryVariable
public static enum QueryVariable.QueryVariableOperation extends Enum<QueryVariable.QueryVariableOperation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EQUALSEQUALS_IGNORE_CASEGREATER_THANGREATER_THAN_OR_EQUALSLESS_THANLESS_THAN_OR_EQUALSLIKELIKE_IGNORE_CASENOT_EQUALSNOT_EQUALS_IGNORE_CASE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static QueryVariable.QueryVariableOperationforFriendlyName(String friendlyName)StringgetFriendlyName()static QueryVariable.QueryVariableOperationvalueOf(String name)Returns the enum constant of this type with the specified name.static QueryVariable.QueryVariableOperation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUALS
public static final QueryVariable.QueryVariableOperation EQUALS
-
NOT_EQUALS
public static final QueryVariable.QueryVariableOperation NOT_EQUALS
-
EQUALS_IGNORE_CASE
public static final QueryVariable.QueryVariableOperation EQUALS_IGNORE_CASE
-
NOT_EQUALS_IGNORE_CASE
public static final QueryVariable.QueryVariableOperation NOT_EQUALS_IGNORE_CASE
-
LIKE
public static final QueryVariable.QueryVariableOperation LIKE
-
LIKE_IGNORE_CASE
public static final QueryVariable.QueryVariableOperation LIKE_IGNORE_CASE
-
GREATER_THAN
public static final QueryVariable.QueryVariableOperation GREATER_THAN
-
GREATER_THAN_OR_EQUALS
public static final QueryVariable.QueryVariableOperation GREATER_THAN_OR_EQUALS
-
LESS_THAN
public static final QueryVariable.QueryVariableOperation LESS_THAN
-
LESS_THAN_OR_EQUALS
public static final QueryVariable.QueryVariableOperation LESS_THAN_OR_EQUALS
-
-
Method Detail
-
values
public static QueryVariable.QueryVariableOperation[] 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 (QueryVariable.QueryVariableOperation c : QueryVariable.QueryVariableOperation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static QueryVariable.QueryVariableOperation 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
-
getFriendlyName
public String getFriendlyName()
-
forFriendlyName
public static QueryVariable.QueryVariableOperation forFriendlyName(String friendlyName)
-
-