public static interface CriteriaBuilder.SimpleCase<C,R> extends Expression<R>
修飾子とタイプ | メソッドと説明 |
---|---|
Expression<C> |
getExpression()
条件に対して検証される式を返します。
|
Expression<R> |
otherwise(Expression<? extends R> result)
case式に"else"句を追加します。
|
Expression<R> |
otherwise(R result)
case式に"else"句を追加します。
|
CriteriaBuilder.SimpleCase<C,R> |
when(C condition,
Expression<? extends R> result)
case式にwhen/then句を追加します。
|
CriteriaBuilder.SimpleCase<C,R> |
when(C condition,
R result)
case式にwhen/then句を追加します。
|
alias, getCompoundSelectionItems, isCompoundSelection
getAlias, getJavaType
Expression<C> getExpression()
CriteriaBuilder.SimpleCase<C,R> when(C condition, R result)
condition
- "when" 条件result
- "then"結果の値CriteriaBuilder.SimpleCase<C,R> when(C condition, Expression<? extends R> result)
condition
- "when" 条件result
- "then"結果式Expression<R> otherwise(R result)
result
- "else" 結果Expression<R> otherwise(Expression<? extends R> result)
result
- "else" 結果式Translated by @megascus.