Uses of Interface
org.hibernate.query.criteria.JpaCompoundSelection
-
Packages that use JpaCompoundSelection Package Description org.hibernate.query.criteria The JPA-standard criteria query API defines all the operations needed express any query written in standard JPQL.org.hibernate.query.criteria.spi SPI for extendingHibernateCriteriaBuilderwith additional functionality by registering aService.org.hibernate.query.sqm This package defines a semantic model of HQL queries.org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.query.sqm.tree.expression Nodes representing expressions in the SQM tree.org.hibernate.query.sqm.tree.select Nodes representingselectstatements in the SQM tree. -
-
Uses of JpaCompoundSelection in org.hibernate.query.criteria
Methods in org.hibernate.query.criteria that return JpaCompoundSelection Modifier and Type Method Description JpaCompoundSelection<Object[]>HibernateCriteriaBuilder. array(Selection<?>... selections)<Y> JpaCompoundSelection<Y>HibernateCriteriaBuilder. array(Class<Y> resultClass, Selection<?>... selections)<Y> JpaCompoundSelection<Y>HibernateCriteriaBuilder. array(Class<Y> resultClass, List<? extends JpaSelection<?>> selections)JpaCompoundSelection<Object[]>HibernateCriteriaBuilder. array(List<? extends JpaSelection<?>> selections)<Y> JpaCompoundSelection<Y>HibernateCriteriaBuilder. construct(Class<Y> resultClass, Selection<?>... selections)<Y> JpaCompoundSelection<Y>HibernateCriteriaBuilder. construct(Class<Y> resultClass, List<? extends JpaSelection<?>> arguments)JpaCompoundSelection<Tuple>HibernateCriteriaBuilder. tuple(Selection<?>... selections)JpaCompoundSelection<Tuple>HibernateCriteriaBuilder. tuple(List<? extends JpaSelection<?>> selections) -
Uses of JpaCompoundSelection in org.hibernate.query.criteria.spi
Methods in org.hibernate.query.criteria.spi that return JpaCompoundSelection Modifier and Type Method Description JpaCompoundSelection<Object[]>HibernateCriteriaBuilderDelegate. array(Selection<?>... selections)<Y> JpaCompoundSelection<Y>HibernateCriteriaBuilderDelegate. array(Class<Y> resultClass, Selection<?>... selections)<Y> JpaCompoundSelection<Y>HibernateCriteriaBuilderDelegate. array(Class<Y> resultClass, List<? extends JpaSelection<?>> selections)JpaCompoundSelection<Object[]>HibernateCriteriaBuilderDelegate. array(List<? extends JpaSelection<?>> selections)<Y> JpaCompoundSelection<Y>HibernateCriteriaBuilderDelegate. construct(Class<Y> resultClass, Selection<?>... selections)<Y> JpaCompoundSelection<Y>HibernateCriteriaBuilderDelegate. construct(Class<Y> resultClass, List<? extends JpaSelection<?>> arguments)JpaCompoundSelection<Tuple>HibernateCriteriaBuilderDelegate. tuple(Selection<?>... selections)JpaCompoundSelection<Tuple>HibernateCriteriaBuilderDelegate. tuple(List<? extends JpaSelection<?>> selections) -
Uses of JpaCompoundSelection in org.hibernate.query.sqm
Methods in org.hibernate.query.sqm that return JpaCompoundSelection Modifier and Type Method Description JpaCompoundSelection<Object[]>NodeBuilder. array(Selection<?>[] selections)JpaCompoundSelection<Object[]>NodeBuilder. array(List<? extends JpaSelection<?>> selections)<Y> JpaCompoundSelection<Y>NodeBuilder. construct(Class<Y> resultClass, Selection<?>[] selections)<Y> JpaCompoundSelection<Y>NodeBuilder. construct(Class<Y> resultClass, List<? extends JpaSelection<?>> arguments)JpaCompoundSelection<Tuple>NodeBuilder. tuple(Selection<?>[] selections)JpaCompoundSelection<Tuple>NodeBuilder. tuple(List<? extends JpaSelection<?>> selections) -
Uses of JpaCompoundSelection in org.hibernate.query.sqm.internal
Methods in org.hibernate.query.sqm.internal that return JpaCompoundSelection Modifier and Type Method Description JpaCompoundSelection<Object[]>SqmCriteriaNodeBuilder. array(Selection<?>[] selections)<Y> JpaCompoundSelection<Y>SqmCriteriaNodeBuilder. array(Class<Y> resultClass, Selection<?>[] selections)<Y> JpaCompoundSelection<Y>SqmCriteriaNodeBuilder. array(Class<Y> resultClass, List<? extends JpaSelection<?>> selections)JpaCompoundSelection<Object[]>SqmCriteriaNodeBuilder. array(List<? extends JpaSelection<?>> selections)<Y> JpaCompoundSelection<Y>SqmCriteriaNodeBuilder. construct(Class<Y> resultClass, Selection<?>[] arguments)<Y> JpaCompoundSelection<Y>SqmCriteriaNodeBuilder. construct(Class<Y> resultClass, List<? extends JpaSelection<?>> arguments)JpaCompoundSelection<Tuple>SqmCriteriaNodeBuilder. tuple(Selection<?>[] selections)JpaCompoundSelection<Tuple>SqmCriteriaNodeBuilder. tuple(List<? extends JpaSelection<?>> selections) -
Uses of JpaCompoundSelection in org.hibernate.query.sqm.tree.expression
Classes in org.hibernate.query.sqm.tree.expression that implement JpaCompoundSelection Modifier and Type Class Description classSqmTuple<T>A tuple constructor, that is, a list of expressions wrapped in parentheses, for example,(x, y, z). -
Uses of JpaCompoundSelection in org.hibernate.query.sqm.tree.select
Classes in org.hibernate.query.sqm.tree.select that implement JpaCompoundSelection Modifier and Type Class Description classSqmDynamicInstantiation<T>Represents a dynamic instantiation (select new XYZ(...) ...) as part of the SQM.classSqmJpaCompoundSelection<T>
-