|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CollectionExpression | |
---|---|
com.mysema.query.collections | Implementations of Querydsl query interfaces for JavaBean collections |
com.mysema.query.jdo | JDOQL support for Querydsl |
com.mysema.query.jpa | Query implementations for HQL and JPAQL |
com.mysema.query.support | Various support classes |
com.mysema.query.types | Contains Querydsl grammar types |
com.mysema.query.types.expr | Operations represent typed operations with operator and arguments |
com.mysema.query.types.path | Paths represent typed property paths, variables and list-map-array access |
com.mysema.query.types.query | Subquery implementations |
Uses of CollectionExpression in com.mysema.query.collections |
---|
Methods in com.mysema.query.collections with parameters of type CollectionExpression | ||
---|---|---|
|
ColQuery.innerJoin(CollectionExpression<?,P> collectionPath,
Path<P> alias)
Define an inner join from the Collection typed path to the alias |
|
|
AbstractColQuery.innerJoin(CollectionExpression<?,P> target,
Path<P> alias)
|
Uses of CollectionExpression in com.mysema.query.jdo |
---|
Methods in com.mysema.query.jdo with parameters of type CollectionExpression | ||
---|---|---|
|
AbstractJDOQLSubQuery.from(CollectionExpression<?,P> target,
EntityPath<P> alias)
|
Uses of CollectionExpression in com.mysema.query.jpa |
---|
Methods in com.mysema.query.jpa with parameters of type CollectionExpression | ||
---|---|---|
static
|
JPQLGrammar.avg(CollectionExpression<?,A> col)
|
|
|
AbstractJPQLSubQuery.fullJoin(CollectionExpression<?,P> target)
|
|
|
JPQLQueryBase.fullJoin(CollectionExpression<?,P> target)
|
|
|
JPQLCommonQuery.fullJoin(CollectionExpression<?,P> target)
Create a full join with the given target. |
|
|
AbstractJPQLSubQuery.fullJoin(CollectionExpression<?,P> target,
Path<P> alias)
|
|
|
JPQLQueryBase.fullJoin(CollectionExpression<?,P> target,
Path<P> alias)
|
|
|
JPQLCommonQuery.fullJoin(CollectionExpression<?,P> target,
Path<P> alias)
Create a full join with the given target and alias. |
|
|
AbstractJPQLSubQuery.innerJoin(CollectionExpression<?,P> target)
|
|
|
JPQLQueryBase.innerJoin(CollectionExpression<?,P> target)
|
|
|
JPQLCommonQuery.innerJoin(CollectionExpression<?,P> target)
Create a inner join with the given target. |
|
|
AbstractJPQLSubQuery.innerJoin(CollectionExpression<?,P> target,
Path<P> alias)
|
|
|
JPQLQueryBase.innerJoin(CollectionExpression<?,P> target,
Path<P> alias)
|
|
|
JPQLCommonQuery.innerJoin(CollectionExpression<?,P> target,
Path<P> alias)
Create a inner join with the given target and alias. |
|
|
AbstractJPQLSubQuery.join(CollectionExpression<?,P> target)
|
|
|
JPQLQueryBase.join(CollectionExpression<?,P> target)
|
|
|
JPQLCommonQuery.join(CollectionExpression<?,P> target)
Create a join with the given target. |
|
|
AbstractJPQLSubQuery.join(CollectionExpression<?,P> target,
Path<P> alias)
|
|
|
JPQLQueryBase.join(CollectionExpression<?,P> target,
Path<P> alias)
|
|
|
JPQLCommonQuery.join(CollectionExpression<?,P> target,
Path<P> alias)
|
|
|
AbstractJPQLSubQuery.leftJoin(CollectionExpression<?,P> target)
|
|
|
JPQLQueryBase.leftJoin(CollectionExpression<?,P> target)
|
|
|
JPQLCommonQuery.leftJoin(CollectionExpression<?,P> target)
Create a left join with the given target. |
|
|
AbstractJPQLSubQuery.leftJoin(CollectionExpression<?,P> target,
Path<P> alias)
|
|
|
JPQLQueryBase.leftJoin(CollectionExpression<?,P> target,
Path<P> alias)
|
|
|
JPQLCommonQuery.leftJoin(CollectionExpression<?,P> target,
Path<P> alias)
Create a left join with the given target and alias. |
|
static
|
JPQLGrammar.max(CollectionExpression<?,A> left)
|
|
static
|
JPQLGrammar.min(CollectionExpression<?,A> left)
|
|
|
AbstractJPQLSubQuery.rightJoin(CollectionExpression<?,P> target)
|
|
|
JPQLQueryBase.rightJoin(CollectionExpression<?,P> target)
|
|
|
JPQLCommonQuery.rightJoin(CollectionExpression<?,P> target)
Create a right join with the given target. |
|
|
AbstractJPQLSubQuery.rightJoin(CollectionExpression<?,P> target,
Path<P> alias)
|
|
|
JPQLQueryBase.rightJoin(CollectionExpression<?,P> target,
Path<P> alias)
|
|
|
JPQLCommonQuery.rightJoin(CollectionExpression<?,P> target,
Path<P> alias)
Create a right join with the given target and alias. |
Uses of CollectionExpression in com.mysema.query.support |
---|
Methods in com.mysema.query.support with parameters of type CollectionExpression | ||
---|---|---|
protected
|
QueryMixin.createAlias(CollectionExpression<?,D> target,
Path<D> alias)
|
|
|
QueryMixin.fullJoin(CollectionExpression<?,P> target)
|
|
|
QueryMixin.fullJoin(CollectionExpression<?,P> target,
Path<P> alias)
|
|
|
QueryMixin.innerJoin(CollectionExpression<?,P> target)
|
|
|
QueryMixin.innerJoin(CollectionExpression<?,P> target,
Path<P> alias)
|
|
|
QueryMixin.join(CollectionExpression<?,P> target)
|
|
|
QueryMixin.join(CollectionExpression<?,P> target,
Path<P> alias)
|
|
|
QueryMixin.leftJoin(CollectionExpression<?,P> target)
|
|
|
QueryMixin.leftJoin(CollectionExpression<?,P> target,
Path<P> alias)
|
|
|
QueryMixin.rightJoin(CollectionExpression<?,P> target)
|
|
|
QueryMixin.rightJoin(CollectionExpression<?,P> target,
Path<P> alias)
|
Uses of CollectionExpression in com.mysema.query.types |
---|
Methods in com.mysema.query.types with parameters of type CollectionExpression | ||
---|---|---|
static
|
ExpressionUtils.all(CollectionExpression<?,? super T> col)
|
|
static
|
ExpressionUtils.any(CollectionExpression<?,? super T> col)
|
|
static
|
ExpressionUtils.in(Expression<D> left,
CollectionExpression<?,? extends D> right)
Create an left in right expression |
Uses of CollectionExpression in com.mysema.query.types.expr |
---|
Subinterfaces of CollectionExpression in com.mysema.query.types.expr | |
---|---|
interface |
ListExpression<E,Q extends SimpleExpression<? super E>>
ListExpression represents java.util.List typed expressions |
Classes in com.mysema.query.types.expr that implement CollectionExpression | |
---|---|
class |
CollectionExpressionBase<T extends Collection<E>,E>
CollectionExpressionBase is an abstract base class for CollectionExpression implementations |
Uses of CollectionExpression in com.mysema.query.types.path |
---|
Classes in com.mysema.query.types.path that implement CollectionExpression | |
---|---|
class |
CollectionPath<E,Q extends SimpleExpression<? super E>>
CollectionPath represents collection paths |
class |
CollectionPathBase<C extends Collection<E>,E,Q extends SimpleExpression<? super E>>
CollectionPath is a base class for collection typed paths |
class |
ListPath<E,Q extends SimpleExpression<? super E>>
ListPath represents list paths |
class |
SetPath<E,Q extends SimpleExpression<? super E>>
SetPath represents set paths |
Uses of CollectionExpression in com.mysema.query.types.query |
---|
Classes in com.mysema.query.types.query that implement CollectionExpression | |
---|---|
class |
ListSubQuery<T>
List result subquery |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |