Class CaseNumericExpression
java.lang.Object
org.datanucleus.store.rdbms.sql.expression.SQLExpression
org.datanucleus.store.rdbms.sql.expression.NumericExpression
org.datanucleus.store.rdbms.sql.expression.CaseNumericExpression
Case expression such as
CASE WHEN expr1 THEN val1 WHEN expr2 THEN val2 ELSE valN ENDwhere each of the "val1", "val2", ... "valN" are NumericExpressions.
-
Nested Class Summary
Nested classes/interfaces inherited from class SQLExpression
SQLExpression.ColumnExpressionList -
Field Summary
Fields inherited from class SQLExpression
lowestOperator, mapping, parameterName, st, stmt, subExprs, table -
Constructor Summary
ConstructorsConstructorDescriptionCaseNumericExpression(SQLExpression[] whenExprs, SQLExpression[] actionExprs, SQLExpression elseExpr) -
Method Summary
Methods inherited from class NumericExpression
add, bitAnd, bitOr, com, div, eq, ge, gt, in, le, lt, mod, mul, ne, neg, subMethods inherited from class SQLExpression
and, cast, distinct, encloseInParentheses, eor, getJavaTypeMapping, getLowestOperator, getNumberOfSubExpressions, getParameterName, getSQLStatement, getSQLTable, getSubExpression, invoke, ior, is, isParameter, not, setJavaTypeMapping, toSQLText, unDistinct
-
Constructor Details
-
CaseNumericExpression
public CaseNumericExpression(SQLExpression[] whenExprs, SQLExpression[] actionExprs, SQLExpression elseExpr)
-