Uses of Interface
com.mysema.query.hql.HQLQuery

Packages that use HQLQuery
com.mysema.query.hql Query implementations for HQL and JPAQL 
com.mysema.query.hql.hibernate HQL for Hibernate 
com.mysema.query.hql.jpa HQL Support classes 
 

Uses of HQLQuery in com.mysema.query.hql
 

Methods in com.mysema.query.hql that return HQLQuery
 HQLQuery HQLQuery.fetch()
          Add the "fetch" flag to the last defined join
 HQLQuery HQLQuery.fetchAll()
          Add the "fetch all properties" flag to the last defined join.
 HQLQuery HQLQuery.from(PEntity<?>... sources)
          Set the sources of this query
<P> HQLQuery
HQLQuery.fullJoin(Path<? extends Collection<P>> target)
          Create an full join with the given target.
<P> HQLQuery
HQLQuery.fullJoin(Path<? extends Collection<P>> target, Path<P> alias)
          Create a full join with the given target and alias.
<P> HQLQuery
HQLQuery.fullJoin(PEntity<P> target)
          Create an full join with the given target.
<P> HQLQuery
HQLQuery.fullJoin(PEntity<P> target, PEntity<P> alias)
          Create a full join with the given target and alias.
<P> HQLQuery
HQLQuery.fullJoin(PMap<?,P,?> target)
          Create an full join with the given target.
<P> HQLQuery
HQLQuery.fullJoin(PMap<?,P,?> target, Path<P> alias)
          Create a full join with the given target and alias.
<P> HQLQuery
HQLQuery.innerJoin(Path<? extends Collection<P>> target)
          Create an inner join with the given target.
<P> HQLQuery
HQLQuery.innerJoin(Path<? extends Collection<P>> target, Path<P> alias)
          Create an inner join with the given target and alias.
<P> HQLQuery
HQLQuery.innerJoin(PEntity<P> target)
          Create an inner join with the given target.
<P> HQLQuery
HQLQuery.innerJoin(PEntity<P> target, PEntity<P> alias)
          Create an inner join with the given target and alias.
<P> HQLQuery
HQLQuery.innerJoin(PMap<?,P,?> target)
          Create an inner join with the given target.
<P> HQLQuery
HQLQuery.innerJoin(PMap<?,P,?> target, Path<P> alias)
          Create an inner join with the given target and alias.
<P> HQLQuery
HQLQuery.join(Path<? extends Collection<P>> target)
          Create an join with the given target.
<P> HQLQuery
HQLQuery.join(Path<? extends Collection<P>> target, Path<P> alias)
           
<P> HQLQuery
HQLQuery.join(PEntity<P> target)
          Create an join with the given target.
<P> HQLQuery
HQLQuery.join(PEntity<P> target, PEntity<P> alias)
          Create a join with the given target and alias.
<P> HQLQuery
HQLQuery.join(PMap<?,P,?> target)
          Create an join with the given target.
<P> HQLQuery
HQLQuery.join(PMap<?,P,?> target, Path<P> alias)
          Create a join with the given target and alias.
<P> HQLQuery
HQLQuery.leftJoin(Path<? extends Collection<P>> target)
          Create an left join with the given target.
<P> HQLQuery
HQLQuery.leftJoin(Path<? extends Collection<P>> target, Path<P> alias)
          Create a left join with the given target and alias.
<P> HQLQuery
HQLQuery.leftJoin(PEntity<P> target)
          Create an left join with the given target.
<P> HQLQuery
HQLQuery.leftJoin(PEntity<P> target, PEntity<P> alias)
          Create a left join with the given target and alias.
<P> HQLQuery
HQLQuery.leftJoin(PMap<?,P,?> target)
          Create an left join with the given target.
<P> HQLQuery
HQLQuery.leftJoin(PMap<?,P,?> target, Path<P> alias)
          Create a left join with the given target and alias.
 HQLQuery HQLQuery.with(EBoolean... condition)
          Add conditions to the with clause
 

Uses of HQLQuery in com.mysema.query.hql.hibernate
 

Classes in com.mysema.query.hql.hibernate that implement HQLQuery
 class HibernateQuery
          HibernateQuery is the default implementation of the HQLQuery interface for Hibernate
 

Uses of HQLQuery in com.mysema.query.hql.jpa
 

Classes in com.mysema.query.hql.jpa that implement HQLQuery
 class JPAQuery
          JPAQuery is the default implementation of the HQLQuery interface for JPA
 



Copyright © 2007-2010 Mysema Ltd. All Rights Reserved.