JDOQLTypedQuery<T> |
JDOQLTypedQuery.datastoreReadTimeoutMillis(java.lang.Integer interval) |
Set the datastore read timeout (millis).
|
JDOQLTypedQuery<T> |
JDOQLTypedQuery.datastoreWriteTimeoutMillis(java.lang.Integer interval) |
Set the datastore write timeout (millis).
|
JDOQLTypedQuery<T> |
JDOQLTypedQuery.excludeSubclasses() |
Method to remove subclasses (of the candidate) from the query
|
JDOQLTypedQuery<T> |
JDOQLTypedQuery.extension(java.lang.String key,
java.lang.Object value) |
Specify an extension for this query.
|
JDOQLTypedQuery<T> |
JDOQLTypedQuery.extensions(java.util.Map values) |
Specify a map of extensions for this query.
|
JDOQLTypedQuery<T> |
JDOQLTypedQuery.filter(BooleanExpression expr) |
Method to set the filter of the query.
|
JDOQLTypedQuery<T> |
JDOQLTypedQuery.groupBy(Expression<?>... exprs) |
Method to set the grouping(s) for the query.
|
JDOQLTypedQuery<T> |
JDOQLTypedQuery.having(Expression<?> expr) |
Method to set the having clause of the query.
|
JDOQLTypedQuery<T> |
JDOQLTypedQuery.ignoreCache(boolean flag) |
Set whether we to ignore the cache with this query.
|
JDOQLTypedQuery<T> |
JDOQLTypedQuery.includeSubclasses() |
Method to include subclasses (of the candidate) to the query
|
<T> JDOQLTypedQuery<T> |
PersistenceManager.newJDOQLTypedQuery(java.lang.Class<T> cls) |
Create a new JDOQLTypedQuery with the specified candidate class.
|
JDOQLTypedQuery<T> |
JDOQLTypedQuery.orderBy(OrderExpression<?>... orderExprs) |
Method to set the ordering of the query.
|
JDOQLTypedQuery<T> |
JDOQLTypedQuery.range(long lowerIncl,
long upperExcl) |
Method to set the range of any required results, using long values.
|
JDOQLTypedQuery<T> |
JDOQLTypedQuery.range(Expression<?> paramLowerInclExpr,
Expression<?> paramUpperExclExpr) |
Method to set the range of any required results, using parameters (expressions).
|
JDOQLTypedQuery<T> |
JDOQLTypedQuery.range(NumericExpression<?> lowerInclExpr,
NumericExpression<?> upperExclExpr) |
Method to set the range of any required results, using expressions.
|
JDOQLTypedQuery<T> |
JDOQLTypedQuery.result(boolean distinct,
Expression<?>... exprs) |
Method to set the result of the query.
|
JDOQLTypedQuery<T> |
JDOQLTypedQuery.saveAsNamedQuery(java.lang.String name) |
Save the query, as it is currently defined, as a named query under the specified name.
|
JDOQLTypedQuery<T> |
JDOQLTypedQuery.serializeRead(java.lang.Boolean serialize) |
Set whether we to lock all objects read by this query.
|
JDOQLTypedQuery<T> |
JDOQLTypedQuery.setCandidates(java.util.Collection<T> candidates) |
Method to set the candidates to use over which we are querying.
|
JDOQLTypedQuery<T> |
JDOQLTypedQuery.setParameter(java.lang.String paramName,
java.lang.Object value) |
Method to set the value for a named parameter for use when executing the query.
|
JDOQLTypedQuery<T> |
JDOQLTypedQuery.setParameter(Expression<?> paramExpr,
java.lang.Object value) |
Method to set a parameter value for the specified (parameter) expression when executing the query.
|
JDOQLTypedQuery<T> |
JDOQLTypedQuery.setParameters(java.util.Map<java.lang.String,?> namedParamMap) |
Method to set the named parameters on this query prior to execution.
|
JDOQLTypedQuery<T> |
JDOQLTypedQuery.unmodifiable() |
Set to make this query unmodifiable hereafter.
|