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