public static interface CriteriaBuilder.Case<R> extends Expression<R>
修飾子とタイプ | メソッドと説明 |
---|---|
Expression<R> |
otherwise(Expression<? extends R> result)
case式に"else"句を追加します。
|
Expression<R> |
otherwise(R result)
case式に"else"句を追加します。
|
CriteriaBuilder.Case<R> |
when(Expression<java.lang.Boolean> condition,
Expression<? extends R> result)
case式にwhen/then句を追加します。
|
CriteriaBuilder.Case<R> |
when(Expression<java.lang.Boolean> condition,
R result)
case式にwhen/then句を追加します。
|
alias, getCompoundSelectionItems, isCompoundSelection
getAlias, getJavaType
CriteriaBuilder.Case<R> when(Expression<java.lang.Boolean> condition, R result)
condition
- "when" 条件result
- "then"結果の値CriteriaBuilder.Case<R> when(Expression<java.lang.Boolean> 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.