Package | Description |
---|---|
javax.persistence.criteria | |
org.hibernate.jpa.criteria | |
org.hibernate.jpa.criteria.expression |
Modifier and Type | Method and Description |
---|---|
CompoundSelection<Object[]> |
CriteriaBuilder.array(Selection<?>... selections)
Create an array-valued selection item.
|
<Y> CompoundSelection<Y> |
CriteriaBuilder.construct(Class<Y> resultClass,
Selection<?>... selections)
Create a selection item corresponding to a constructor.
|
CompoundSelection<Tuple> |
CriteriaBuilder.tuple(Selection<?>... selections)
Create a tuple-valued selection item.
|
Modifier and Type | Method and Description |
---|---|
<Y> CompoundSelection<Y> |
CriteriaBuilderImpl.array(Class<Y> type,
List<Selection<?>> selections)
Version of
CriteriaBuilderImpl.array(Selection[]) taking a list of selections,
as well as the type of array. |
CompoundSelection<Object[]> |
CriteriaBuilderImpl.array(List<Selection<?>> selections)
Version of
CriteriaBuilderImpl.array(Selection[]) taking a list of selections. |
CompoundSelection<Object[]> |
CriteriaBuilderImpl.array(Selection<?>... selections) |
<Y> CompoundSelection<Y> |
CriteriaBuilderImpl.construct(Class<Y> result,
List<Selection<?>> selections)
Version of
CriteriaBuilderImpl.construct(Class,Selection[]) taking the
to-be-constructed type as well as a list of selections. |
<Y> CompoundSelection<Y> |
CriteriaBuilderImpl.construct(Class<Y> result,
Selection<?>... selections) |
CompoundSelection<Tuple> |
CriteriaBuilderImpl.tuple(List<Selection<?>> selections)
Version of
CriteriaBuilderImpl.tuple(Selection[]) taking a list. |
CompoundSelection<Tuple> |
CriteriaBuilderImpl.tuple(Selection<?>... selections) |
Modifier and Type | Class and Description |
---|---|
class |
CompoundSelectionImpl<X>
The Hibernate implementation of the JPA
CompoundSelection
contract. |
Copyright © 2017 JBoss by Red Hat. All rights reserved.