Uses of Interface
javax.jdo.query.CollectionExpression
Packages that use CollectionExpression
Package
Description
Package providing the Java Data Objects (JDO) primary API components.
Package providing expressions for building a typed JDOQL query.
-
Uses of CollectionExpression in javax.jdo
Methods in javax.jdo that return CollectionExpressionModifier and TypeMethodDescriptionCollectionExpression<?, ?> JDOQLTypedQuery.collectionParameter(String name) Method to return a collection parameter for the query.<E> CollectionExpression<Collection<E>, E> JDOQLTypedQuery.collectionParameter(String name, Class<E> elementType) Method to return a collection parameter for the query.CollectionExpression<?, ?> JDOQLTypedSubquery.select(CollectionExpression<?, ?> expr) Accessor for the subquery (collection) expression from the subquery.Methods in javax.jdo with parameters of type CollectionExpressionModifier and TypeMethodDescriptionCollectionExpression<?, ?> JDOQLTypedSubquery.select(CollectionExpression<?, ?> expr) Accessor for the subquery (collection) expression from the subquery.<E> JDOQLTypedSubquery<E> JDOQLTypedQuery.subquery(CollectionExpression<Collection<E>, E> candidateCollection, Class<E> candidate, String candidateAlias) Method to return a correlated subquery for use in this query. -
Uses of CollectionExpression in javax.jdo.query
Subinterfaces of CollectionExpression in javax.jdo.queryModifier and TypeInterfaceDescriptioninterfaceListExpression<T extends List<E>, E>Representation of a List in a query.