public class FilterWhereBuilder extends Object
AbstractFilterTranslator
to help create the database WHERE query
clause.
The main functionality of this helper class is create SQL WHERE query clause
The builder can return a List of params to be used within preparedStatement creation
Constructor and Description |
---|
FilterWhereBuilder() |
Modifier and Type | Method and Description |
---|---|
void |
addBind(SQLParam param,
String operator)
Add name value pair bindings with operator, this is lazy bindings
resolved at
getWhereClause() . |
void |
addNull(String name)
Add null value.
|
List<SQLParam> |
getParams() |
StringBuilder |
getWhere() |
String |
getWhereClause()
Gets the where clause.
|
boolean |
isIn()
There is a need to put the content into brackets.
|
void |
join(String operator,
FilterWhereBuilder l,
FilterWhereBuilder r)
Compound join operator.
|
public void join(String operator, FilterWhereBuilder l, FilterWhereBuilder r)
operator
- AND/ORl
- left FilterQueryBuiler
r
- right FilterQueryBuiler
public StringBuilder getWhere()
public void addBind(SQLParam param, String operator)
getWhereClause()
.param
- value to builderoperator
- an operator to comparegetWhereClause()
public void addNull(String name)
name
- of the columngetWhereClause()
public boolean isIn()
public String getWhereClause()
Copyright © 2018–2025. All rights reserved.