Package org.camunda.bpm.engine.impl
Class QueryVariableValue
- java.lang.Object
-
- org.camunda.bpm.engine.impl.QueryVariableValue
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
TaskQueryVariableValue
public class QueryVariableValue extends Object implements Serializable
Represents a variable value used in queries.- Author:
- Frederik Heremans
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean
local
protected String
name
protected QueryOperator
operator
protected static long
serialVersionUID
protected TypedValue
value
protected AbstractQueryVariableValueCondition
valueCondition
protected boolean
variableNameIgnoreCase
protected boolean
variableValueIgnoreCase
-
Constructor Summary
Constructors Constructor Description QueryVariableValue(String name, Object value, QueryOperator operator, boolean local)
QueryVariableValue(String name, Object value, QueryOperator operator, boolean local, boolean variableNameIgnoreCase, boolean variableValueIgnoreCase)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getName()
QueryOperator
getOperator()
String
getOperatorName()
TypedValue
getTypedValue()
Object
getValue()
List<SingleQueryVariableValueCondition>
getValueConditions()
int
hashCode()
void
initialize(VariableSerializers serializers, String dbType)
boolean
isLocal()
boolean
isVariableNameIgnoreCase()
boolean
isVariableValueIgnoreCase()
void
setVariableNameIgnoreCase(boolean variableNameIgnoreCase)
void
setVariableValueIgnoreCase(boolean variableValueIgnoreCase)
-
-
-
Field Detail
-
serialVersionUID
protected static final long serialVersionUID
- See Also:
- Constant Field Values
-
name
protected String name
-
value
protected TypedValue value
-
operator
protected QueryOperator operator
-
local
protected boolean local
-
valueCondition
protected AbstractQueryVariableValueCondition valueCondition
-
variableNameIgnoreCase
protected boolean variableNameIgnoreCase
-
variableValueIgnoreCase
protected boolean variableValueIgnoreCase
-
-
Constructor Detail
-
QueryVariableValue
public QueryVariableValue(String name, Object value, QueryOperator operator, boolean local)
-
QueryVariableValue
public QueryVariableValue(String name, Object value, QueryOperator operator, boolean local, boolean variableNameIgnoreCase, boolean variableValueIgnoreCase)
-
-
Method Detail
-
initialize
public void initialize(VariableSerializers serializers, String dbType)
-
getValueConditions
public List<SingleQueryVariableValueCondition> getValueConditions()
-
getName
public String getName()
-
getOperator
public QueryOperator getOperator()
-
getOperatorName
public String getOperatorName()
-
getValue
public Object getValue()
-
getTypedValue
public TypedValue getTypedValue()
-
isLocal
public boolean isLocal()
-
isVariableNameIgnoreCase
public boolean isVariableNameIgnoreCase()
-
setVariableNameIgnoreCase
public void setVariableNameIgnoreCase(boolean variableNameIgnoreCase)
-
isVariableValueIgnoreCase
public boolean isVariableValueIgnoreCase()
-
setVariableValueIgnoreCase
public void setVariableValueIgnoreCase(boolean variableValueIgnoreCase)
-
-