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 SummaryFields Modifier and Type Field Description protected booleanlocalprotected Stringnameprotected QueryOperatoroperatorprotected static longserialVersionUIDprotected TypedValuevalueprotected AbstractQueryVariableValueConditionvalueConditionprotected booleanvariableNameIgnoreCaseprotected booleanvariableValueIgnoreCase
 - 
Constructor SummaryConstructors 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 SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetName()QueryOperatorgetOperator()StringgetOperatorName()TypedValuegetTypedValue()ObjectgetValue()List<SingleQueryVariableValueCondition>getValueConditions()inthashCode()voidinitialize(VariableSerializers serializers, String dbType)booleanisLocal()booleanisVariableNameIgnoreCase()booleanisVariableValueIgnoreCase()voidsetVariableNameIgnoreCase(boolean variableNameIgnoreCase)voidsetVariableValueIgnoreCase(boolean variableValueIgnoreCase)
 
- 
- 
- 
Field Detail- 
serialVersionUIDprotected static final long serialVersionUID - See Also:
- Constant Field Values
 
 - 
nameprotected String name 
 - 
valueprotected TypedValue value 
 - 
operatorprotected QueryOperator operator 
 - 
localprotected boolean local 
 - 
valueConditionprotected AbstractQueryVariableValueCondition valueCondition 
 - 
variableNameIgnoreCaseprotected boolean variableNameIgnoreCase 
 - 
variableValueIgnoreCaseprotected boolean variableValueIgnoreCase 
 
- 
 - 
Constructor Detail- 
QueryVariableValuepublic QueryVariableValue(String name, Object value, QueryOperator operator, boolean local) 
 - 
QueryVariableValuepublic QueryVariableValue(String name, Object value, QueryOperator operator, boolean local, boolean variableNameIgnoreCase, boolean variableValueIgnoreCase) 
 
- 
 - 
Method Detail- 
initializepublic void initialize(VariableSerializers serializers, String dbType) 
 - 
getValueConditionspublic List<SingleQueryVariableValueCondition> getValueConditions() 
 - 
getNamepublic String getName() 
 - 
getOperatorpublic QueryOperator getOperator() 
 - 
getOperatorNamepublic String getOperatorName() 
 - 
getValuepublic Object getValue() 
 - 
getTypedValuepublic TypedValue getTypedValue() 
 - 
isLocalpublic boolean isLocal() 
 - 
isVariableNameIgnoreCasepublic boolean isVariableNameIgnoreCase() 
 - 
setVariableNameIgnoreCasepublic void setVariableNameIgnoreCase(boolean variableNameIgnoreCase) 
 - 
isVariableValueIgnoreCasepublic boolean isVariableValueIgnoreCase() 
 - 
setVariableValueIgnoreCasepublic void setVariableValueIgnoreCase(boolean variableValueIgnoreCase) 
 
- 
 
-