Param.Builder |
Param.Builder.add(String paramKey,
Object paramValue) |
This method is suitable when your paramValue is the correct object
for the query to be executed.
|
Param.Builder |
Param.Builder.add(String paramKey,
Object paramValue,
boolean or) |
This method is suitable when your paramValue is the correct object
for the query to be executed.
|
Param.Builder |
Param.Builder.add(String paramKey,
String paramValue,
boolean or,
com.vectorprint.StringConverter converter) |
This method is suitable when your paramValue is a String that must be
converted to get the correct object for the query to be executed.
|
Param.Builder |
Param.Builder.add(String paramKey,
String paramValue,
com.vectorprint.StringConverter converter) |
This method is suitable when your paramValue is a String that must be
converted to get the correct object for the query to be executed.
|
Param.Builder |
Param.Builder.add(String propertyPath,
String paramKey,
Object paramValue,
boolean or) |
This method is suitable when your paramValue is the correct object
for the query to be executed.
|
Param.Builder |
Param.Builder.add(String paramKey,
String paramValue,
String operator,
boolean or,
com.vectorprint.StringConverter converter) |
Assumes key and propertyPath are the same
|
Param.Builder |
Param.Builder.add(String propertyPath,
String paramKey,
String paramValue,
com.vectorprint.StringConverter converter) |
This method is suitable when your paramValue is a String that must be
converted to get the correct object for the query to be executed.
|
Param.Builder |
Param.Builder.add(String propertyPath,
String paramKey,
String operator,
Object paramValue,
boolean not,
boolean or) |
|
Param.Builder |
Param.Builder.add(String propertyPath,
String paramKey,
String operator,
Object paramValue,
boolean not,
boolean or,
Object maxValue) |
|
Param.Builder |
Param.Builder.add(String propertyPath,
String paramKey,
String operator,
String paramValue,
boolean or,
com.vectorprint.StringConverter converter) |
Bottleneck method for String values, when configured in the Builder,
applies syntax support and wildcard mapping, applies conversion when
a converter is supplied.
|
Param.Builder |
Param.Builder.add(String propertyPath,
String paramKey,
OPERATOR operator,
Object paramValue,
boolean not,
boolean or) |
|
Param.Builder |
Param.Builder.add(String propertyPath,
String paramKey,
OPERATOR operator,
Object paramValue,
boolean not,
boolean or,
Object maxValue) |
Bottleneck method, adds a new Param, does not apply any intelligence.
|
Param.Builder |
Param.Builder.addParam(List<Param> p) |
|
Param.Builder |
Param.Builder.addParam(Param... p) |
|
Param.Builder |
Param.Builder.checkNotNull(String propertyPath) |
|
Param.Builder |
Param.Builder.clear() |
|
Param.Builder |
Param.Builder.remove(String paramKey) |
|
Param.Builder |
Param.Builder.setGroupEndsLastParam(int group) |
how many groups does the last parameter end, ")";
|
Param.Builder |
Param.Builder.setGroupEndsParam(int group,
int paramIndex) |
|
Param.Builder |
Param.Builder.setGroupEndsParam(int group,
String key) |
|
Param.Builder |
Param.Builder.setGroupStartsLastParam(int group) |
how many groups does the last parameter start, "(";
|
Param.Builder |
Param.Builder.setGroupStartsParam(int group,
int paramIndex) |
|
Param.Builder |
Param.Builder.setGroupStartsParam(int group,
String key) |
|