Query<T> |
QueryBuilder.build() |
Builds the query and closes this QueryBuilder.
|
Query<T> |
Query.copy() |
Creates a copy of this for use in another thread.
|
protected Query<T> |
QueryThreadLocal.initialValue() |
|
Query<T> |
Query.setParameter(Property<?> property,
boolean value) |
Sets a parameter previously given to the QueryBuilder to a new value.
|
Query<T> |
Query.setParameter(Property<?> property,
byte[] value) |
Sets a parameter previously given to the QueryBuilder to new values.
|
Query<T> |
Query.setParameter(Property<?> property,
double value) |
Sets a parameter previously given to the QueryBuilder to a new value.
|
Query<T> |
Query.setParameter(Property<?> property,
float[] value) |
Changes the parameter of the query condition for property to a new value.
|
Query<T> |
Query.setParameter(Property<?> property,
int[] value) |
Changes the parameter of the query condition for property to a new value.
|
Query<T> |
Query.setParameter(Property<?> property,
long value) |
Sets a parameter previously given to the QueryBuilder to a new value.
|
Query<T> |
Query.setParameter(Property<?> property,
long[] value) |
Changes the parameter of the query condition for property to a new value.
|
Query<T> |
Query.setParameter(Property<?> property,
java.lang.String value) |
Sets a parameter previously given to the QueryBuilder to a new value.
|
Query<T> |
Query.setParameter(Property<?> property,
java.lang.String[] value) |
Changes the parameter of the query condition for property to a new value.
|
Query<T> |
Query.setParameter(Property<?> property,
java.util.Date value) |
Sets a parameter previously given to the QueryBuilder to a new value.
|
Query<T> |
Query.setParameter(java.lang.String alias,
boolean value) |
Changes the parameter of the query condition with the matching alias to a new value.
|
Query<T> |
Query.setParameter(java.lang.String alias,
byte[] value) |
Changes the parameter of the query condition with the matching alias to a new value.
|
Query<T> |
Query.setParameter(java.lang.String alias,
double value) |
Changes the parameter of the query condition with the matching alias to a new value.
|
Query<T> |
Query.setParameter(java.lang.String alias,
float[] value) |
Changes the parameter of the query condition with the matching alias to a new value.
|
Query<T> |
Query.setParameter(java.lang.String alias,
int[] value) |
Changes the parameter of the query condition with the matching alias to a new value.
|
Query<T> |
Query.setParameter(java.lang.String alias,
long value) |
Changes the parameter of the query condition with the matching alias to a new value.
|
Query<T> |
Query.setParameter(java.lang.String alias,
long[] value) |
Changes the parameter of the query condition with the matching alias to a new value.
|
Query<T> |
Query.setParameter(java.lang.String alias,
java.lang.String value) |
Changes the parameter of the query condition with the matching alias to a new value.
|
Query<T> |
Query.setParameter(java.lang.String alias,
java.lang.String[] value) |
Changes the parameter of the query condition with the matching alias to a new value.
|
Query<T> |
Query.setParameter(java.lang.String alias,
java.util.Date value) |
Changes the parameter of the query condition with the matching alias to a new value.
|
Query<T> |
Query.setParameters(Property<?> property,
double value1,
double value2) |
Sets a parameter previously given to the QueryBuilder to new values.
|
Query<T> |
Query.setParameters(Property<?> property,
int[] values) |
Deprecated.
|
Query<T> |
Query.setParameters(Property<?> property,
long[] values) |
Deprecated.
|
Query<T> |
Query.setParameters(Property<?> property,
long value1,
long value2) |
Sets a parameter previously given to the QueryBuilder to new values.
|
Query<T> |
Query.setParameters(Property<?> property,
java.lang.String[] values) |
Deprecated.
|
Query<T> |
Query.setParameters(Property<?> property,
java.lang.String key,
java.lang.String value) |
Sets a parameter previously given to the QueryBuilder to new values.
|
Query<T> |
Query.setParameters(java.lang.String alias,
double value1,
double value2) |
Changes the parameters of the query condition with the matching alias to the new values.
|
Query<T> |
Query.setParameters(java.lang.String alias,
int[] values) |
Deprecated.
|
Query<T> |
Query.setParameters(java.lang.String alias,
long[] values) |
Deprecated.
|
Query<T> |
Query.setParameters(java.lang.String alias,
long value1,
long value2) |
Changes the parameters of the query condition with the matching alias to the new values.
|
Query<T> |
Query.setParameters(java.lang.String alias,
java.lang.String[] values) |
Deprecated.
|
Query<T> |
Query.setParameters(java.lang.String alias,
java.lang.String key,
java.lang.String value) |
Changes the parameters of the query condition with the matching alias to the new values.
|