Package | Description |
---|---|
org.datanucleus.api.jdo.query |
Package providing DataNucleus' implementation of a typesafe query mechanism, primarily JDOQL.
|
org.datanucleus.query.typesafe |
Package providing a typesafe query mechanism, primarily for JDO.
|
Modifier and Type | Class and Description |
---|---|
class |
JDOTypesafeSubquery<T>
Implementation of a typesafe subquery for JDO.
|
Modifier and Type | Method and Description |
---|---|
TypesafeSubquery |
JDOTypesafeSubquery.filter(BooleanExpression expr) |
TypesafeSubquery |
JDOTypesafeSubquery.groupBy(Expression... exprs) |
TypesafeSubquery |
JDOTypesafeSubquery.having(Expression expr) |
<S> TypesafeSubquery<S> |
JDOTypesafeQuery.subquery(Class<S> candidateClass,
String candidateAlias) |
TypesafeSubquery<T> |
JDOTypesafeQuery.subquery(String candidateAlias) |
Modifier and Type | Method and Description |
---|---|
TypesafeSubquery |
TypesafeSubquery.filter(BooleanExpression expr)
Method to set the filter of the query.
|
TypesafeSubquery |
TypesafeSubquery.groupBy(Expression... exprs)
Method to set the grouping(s) for the query.
|
TypesafeSubquery |
TypesafeSubquery.having(Expression expr)
Method to set the having clause of the query.
|
<S> TypesafeSubquery<S> |
TypesafeQuery.subquery(Class<S> candidate,
String candidateAlias)
Method to return a subquery for use in this query.
|
TypesafeSubquery<T> |
TypesafeQuery.subquery(String candidateAlias)
Method to return a subquery for use in this query using the same candidate class as this query.
|
Copyright © 2018. All rights reserved.