| Package | Description |
|---|---|
| javax.persistence.criteria | |
| org.hibernate.jpa.criteria | |
| org.hibernate.jpa.criteria.expression |
| Modifier and Type | Method and Description |
|---|---|
<R> CriteriaBuilder.Case<R> |
CriteriaBuilder.selectCase()
Create a general case expression.
|
CriteriaBuilder.Case<R> |
CriteriaBuilder.Case.when(Expression<Boolean> condition,
Expression<? extends R> result)
Add a when/then clause to the case expression.
|
CriteriaBuilder.Case<R> |
CriteriaBuilder.Case.when(Expression<Boolean> condition,
R result)
Add a when/then clause to the case expression.
|
| Modifier and Type | Method and Description |
|---|---|
<R> CriteriaBuilder.Case<R> |
CriteriaBuilderImpl.selectCase() |
<R> CriteriaBuilder.Case<R> |
CriteriaBuilderImpl.selectCase(Class<R> type) |
| Modifier and Type | Class and Description |
|---|---|
class |
SearchedCaseExpression<R>
Models what ANSI SQL terms a searched case expression.
|
| Modifier and Type | Method and Description |
|---|---|
CriteriaBuilder.Case<R> |
SearchedCaseExpression.when(Expression<Boolean> condition,
Expression<? extends R> result) |
CriteriaBuilder.Case<R> |
SearchedCaseExpression.when(Expression<Boolean> condition,
R result) |
Copyright © 2016 JBoss by Red Hat. All rights reserved.