Package | Description |
---|---|
javax.jdo | |
javax.jdo.query |
Package providing expressions for building a typed JDOQL query.
|
Modifier and Type | Method and Description |
---|---|
<V> IfThenElseExpression<V> |
JDOQLTypedQuery.ifThen(BooleanExpression cond,
V thenValue)
Method to return an "IF (...) ...
|
<V> IfThenElseExpression<V> |
JDOQLTypedQuery.ifThen(Class<V> type,
BooleanExpression cond,
Expression<V> thenValueExpr)
Method to return an "IF (...) ...
|
<V> IfThenElseExpression<V> |
JDOQLTypedQuery.ifThenElse(BooleanExpression ifExpr,
Expression<V> thenValueExpr,
V elseValue)
Method to return an "IF (...) ...
|
<V> IfThenElseExpression<V> |
JDOQLTypedQuery.ifThenElse(BooleanExpression ifExpr,
V thenValue,
Expression<V> elseValueExpr)
Method to return an "IF (...) ...
|
<V> IfThenElseExpression<V> |
JDOQLTypedQuery.ifThenElse(BooleanExpression ifExpr,
V thenValue,
V elseValue)
Method to return an "IF (...) ...
|
<V> IfThenElseExpression<V> |
JDOQLTypedQuery.ifThenElse(Class<V> type,
BooleanExpression ifExpr,
Expression<V> thenValueExpr,
Expression<V> elseValueExpr)
Method to return an "IF (...) ...
|
Modifier and Type | Method and Description |
---|---|
IfThenElseExpression<T> |
IfThenElseExpression.elseEnd(Expression<T> valueExpr)
Method to add the "ELSE ..." clause.
|
IfThenElseExpression<T> |
IfThenElseExpression.elseEnd(T value)
Method to add the "ELSE ..." clause.
|
IfThenElseExpression<T> |
IfThenElseExpression.ifThen(BooleanExpression ifExpr,
Expression<T> valueExpr)
Method to add an "IF (...) ..." clause.
|
IfThenElseExpression<T> |
IfThenElseExpression.ifThen(BooleanExpression ifExpr,
T value)
Method to add an "IF (...) ..." clause.
|
Copyright © 2020. All rights reserved.