T - Java typepublic interface IfThenElseExpression<T> extends ComparableExpression<T>
| Modifier and Type | Method and Description |
|---|---|
IfThenElseExpression<T> |
elseEnd(Expression<T> elseValueExpr)
Method to add the "ELSE ..." clause.
|
IfThenElseExpression<T> |
elseEnd(T elseValue)
Method to add the "ELSE ..." clause.
|
IfThenElseExpression<T> |
ifThen(BooleanExpression cond,
Expression<T> thenValueExpr)
Method to add an "IF (...) ..." clause.
|
IfThenElseExpression<T> |
ifThen(BooleanExpression cond,
T thenValue)
Method to add an "IF (...) ..." clause.
|
asc, desc, gt, gt, gteq, gteq, lt, lt, lteq, lteq, max, minas, cast, count, countDistinct, eq, eq, instanceOf, ne, neIfThenElseExpression<T> ifThen(BooleanExpression cond, Expression<T> thenValueExpr)
cond - The if expressionthenValueExpr - Expression to return when the if expression is metIfThenElseExpression<T> ifThen(BooleanExpression cond, T thenValue)
cond - The if conditionthenValue - Value to return when the if expression is metIfThenElseExpression<T> elseEnd(Expression<T> elseValueExpr)
elseValueExpr - Expression for value to return when the if expression is not metIfThenElseExpression<T> elseEnd(T elseValue)
elseValue - Value to return when the if expression is not metCopyright © 2005–1970 Apache Software Foundation. All rights reserved.