Uses of Interface
org.datanucleus.query.typesafe.TypesafeQuery

Packages that use TypesafeQuery
org.datanucleus.query.typesafe Package providing a typesafe query mechanism, primarily for JDO. 
 

Uses of TypesafeQuery in org.datanucleus.query.typesafe
 

Methods in org.datanucleus.query.typesafe that return TypesafeQuery
 TypesafeQuery<T> TypesafeQuery.addExtension(String key, Object value)
          Add a vendor-specific extension to this query.
 TypesafeQuery<T> TypesafeQuery.excludeSubclasses()
          Method to remove subclasses (of the candidate) from the query
 TypesafeQuery<T> TypesafeQuery.filter(BooleanExpression expr)
          Method to set the filter of the query.
 TypesafeQuery<T> TypesafeQuery.groupBy(Expression... exprs)
          Method to set the grouping(s) for the query.
 TypesafeQuery<T> TypesafeQuery.having(Expression expr)
          Method to set the having clause of the query.
 TypesafeQuery<T> TypesafeQuery.includeSubclasses()
          Method to include subclasses (of the candidate) to the query
 TypesafeQuery<T> TypesafeQuery.orderBy(OrderExpression... orderExprs)
          Method to set the ordering of the query.
 TypesafeQuery<T> TypesafeQuery.range(Expression paramLowerInclExpr, Expression paramUpperExclExpr)
          Method to set the range of any required results, using parameters (expressions).
 TypesafeQuery<T> TypesafeQuery.range(long lowerIncl, long upperExcl)
          Method to set the range of any required results, using long values.
 TypesafeQuery<T> TypesafeQuery.range(NumericExpression lowerInclExpr, NumericExpression upperExclExpr)
          Method to set the range of any required results, using expressions.
 TypesafeQuery<T> TypesafeQuery.setCandidates(Collection<T> candidates)
          Method to set the candidates to use over which we are querying.
 TypesafeQuery<T> TypesafeQuery.setExtensions(Map<String,Object> extensions)
          Set multiple extensions, or use null to clear all extensions.
 TypesafeQuery<T> TypesafeQuery.setIgnoreCache(boolean ignore)
          Whether the query should ignore the cache and go straight to the datastore.
 TypesafeQuery<T> TypesafeQuery.setParameter(Expression paramExpr, Object value)
          Method to set a parameter value for use when executing the query.
 TypesafeQuery<T> TypesafeQuery.setParameter(String paramName, Object value)
          Method to set a parameter value for use when executing the query.
 



Copyright © 2013. All Rights Reserved.