T
- Java type being returned herepublic interface IfThenElseExpression<T> extends ComparableExpression<T>
Modifier and Type | Method and Description |
---|---|
IfThenElseExpression<T> |
elseEnd(Expression<T> valueExpr)
Method to add the "ELSE ..." clause.
|
IfThenElseExpression<T> |
elseEnd(T value)
Method to add the "ELSE ..." clause.
|
IfThenElseExpression<T> |
ifThen(BooleanExpression ifExpr,
Expression<T> valueExpr)
Method to add an "IF (...) ..." clause.
|
IfThenElseExpression<T> |
ifThen(BooleanExpression ifExpr,
T value)
Method to add an "IF (...) ..." clause.
|
asc, desc, gt, gt, gteq, gteq, lt, lt, lteq, lteq, max, min
as, cast, count, countDistinct, eq, eq, instanceOf, ne, ne
IfThenElseExpression<T> ifThen(BooleanExpression ifExpr, T value)
ifExpr
- The if expressionvalue
- The return valueIfThenElseExpression<T> ifThen(BooleanExpression ifExpr, Expression<T> valueExpr)
ifExpr
- The if expressionvalueExpr
- The return value expressionIfThenElseExpression<T> elseEnd(T value)
value
- The return valueIfThenElseExpression<T> elseEnd(Expression<T> valueExpr)
valueExpr
- The return value expressionCopyright © 2020. All rights reserved.