Package | Description |
---|---|
com.querydsl.collections |
Java Bean collections support
|
com.querydsl.core.support |
Various support classes
|
com.querydsl.core.types.dsl |
DSL expression types
|
com.querydsl.jpa |
JPA support
|
Modifier and Type | Method and Description |
---|---|
<P> Q |
AbstractCollQuery.innerJoin(MapExpression<?,P> target,
Path<P> alias)
Define an inner join from the Map typed path to the alias
|
<P> Q |
AbstractCollQuery.leftJoin(MapExpression<?,P> target,
Path<P> alias)
Define a left join from the Map typed path to the alias
|
Modifier and Type | Method and Description |
---|---|
<P> T |
QueryMixin.fullJoin(MapExpression<?,P> target,
Path<P> alias) |
<P> T |
QueryMixin.innerJoin(MapExpression<?,P> target,
Path<P> alias) |
<P> T |
QueryMixin.join(MapExpression<?,P> target,
Path<P> alias) |
<P> T |
QueryMixin.leftJoin(MapExpression<?,P> target,
Path<P> alias) |
<P> T |
QueryMixin.rightJoin(MapExpression<?,P> target,
Path<P> alias) |
Modifier and Type | Class and Description |
---|---|
class |
MapExpressionBase<K,V,Q extends SimpleExpression<? super V>>
MapExpressionBase is an abstract base class for MapExpression implementations |
class |
MapPath<K,V,E extends SimpleExpression<? super V>>
MapPath represents map paths |
Modifier and Type | Method and Description |
---|---|
<P> JPQLQuery<T> |
JPQLQuery.innerJoin(MapExpression<?,P> target)
Create a inner join with the given target.
|
<P> Q |
JPAQueryBase.innerJoin(MapExpression<?,P> target) |
<P> JPQLQuery<T> |
JPQLQuery.innerJoin(MapExpression<?,P> target,
Path<P> alias)
Create a inner join with the given target and alias.
|
<P> Q |
JPAQueryBase.innerJoin(MapExpression<?,P> target,
Path<P> alias) |
<P> JPQLQuery<T> |
JPQLQuery.join(MapExpression<?,P> target)
Create a join with the given target.
|
<P> Q |
JPAQueryBase.join(MapExpression<?,P> target) |
<P> JPQLQuery<T> |
JPQLQuery.join(MapExpression<?,P> target,
Path<P> alias)
Create a join with the given target and alias.
|
<P> Q |
JPAQueryBase.join(MapExpression<?,P> target,
Path<P> alias) |
<P> JPQLQuery<T> |
JPQLQuery.leftJoin(MapExpression<?,P> target)
Create a left join with the given target.
|
<P> Q |
JPAQueryBase.leftJoin(MapExpression<?,P> target) |
<P> JPQLQuery<T> |
JPQLQuery.leftJoin(MapExpression<?,P> target,
Path<P> alias)
Create a left join with the given target and alias.
|
<P> Q |
JPAQueryBase.leftJoin(MapExpression<?,P> target,
Path<P> alias) |
<P> JPQLQuery<T> |
JPQLQuery.rightJoin(MapExpression<?,P> target)
Create a right join with the given target.
|
<P> Q |
JPAQueryBase.rightJoin(MapExpression<?,P> target) |
<P> JPQLQuery<T> |
JPQLQuery.rightJoin(MapExpression<?,P> target,
Path<P> alias)
Create a right join with the given target and alias.
|
<P> Q |
JPAQueryBase.rightJoin(MapExpression<?,P> target,
Path<P> alias) |
Copyright © 2007–2016 Querydsl. All rights reserved.