Class QueryParameter
java.lang.Object
com.flowable.serviceregistry.engine.impl.invoker.db.QueryParameter
- Author:
- Filip Hrisafov
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
static enum
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
protected final String
static final String
protected final QueryParameter.Operator
protected final Object
-
Constructor Summary
ConstructorDescriptionQueryParameter
(String columnName, QueryParameter.Operator operator, Object value) -
Method Summary
Modifier and TypeMethodDescriptionstatic QueryParameter
getValue()
The query parameter itself is a where clause part and is being handled in the sqlmap.static QueryParameter
static QueryParameter
in
(List<JoinTableConfig> joinTables, QueryParameter queryParameter) toString()
-
Field Details
-
columnName
-
operator
-
value
-
LITERAL_TYPE
- See Also:
-
CLAUSE_TYPE
- See Also:
-
-
Constructor Details
-
QueryParameter
-
-
Method Details
-
getColumnName
-
getOperator
-
getValue
-
equals
-
in
-
in
-
getWhereClauseValue
The query parameter itself is a where clause part and is being handled in the sqlmap. We return a list here, so that theinclude
can be done in aforeach
block in sqlmap. Only this way the scoping in mybatis works as expected, in contrast to usingbind
as alternative. -
getWhereClauseType
-
toString
-