public interface CaseExpression
Modifier and Type | Method and Description |
---|---|
Expression |
elseCase(Calendar arg)
Add else to a case expression.
|
Expression |
elseCase(Class arg)
Add else to a case expression.
|
Expression |
elseCase(Date arg)
Add else to a case expression.
|
Expression |
elseCase(Enum<?> arg)
Add else to a case expression.
|
Expression |
elseCase(Expression arg)
Add else to a case expression.
|
Expression |
elseCase(Number arg)
Add else to a case expression.
|
Expression |
elseCase(String arg)
Add else to a case expression.
|
CaseExpression |
then(Calendar then)
Add a then clause to a general or simple case expression.
|
CaseExpression |
then(Class then)
Add a then clause to a general or simple case expression.
|
CaseExpression |
then(Date then)
Add a then clause to a general or simple case expression.
|
CaseExpression |
then(Enum<?> then)
Add a then clause to a general or simple case expression.
|
CaseExpression |
then(Expression then)
Add a then clause to a general or simple case expression.
|
CaseExpression |
then(Number then)
Add a then clause to a general or simple case expression.
|
CaseExpression |
then(String then)
Add a then clause to a general or simple case expression.
|
CaseExpression |
when(Calendar when)
Add a when clause to a simple case expression.
|
CaseExpression |
when(Class when)
Add a when clause to a simple case expression.
|
CaseExpression |
when(Date when)
Add a when clause to a simple case expression.
|
CaseExpression |
when(Enum<?> when)
Add a when clause to a simple case expression.
|
CaseExpression |
when(Expression when)
Add a when clause to a simple case expression.
|
CaseExpression |
when(Number when)
Add a when clause to a simple case expression.
|
CaseExpression |
when(Predicate pred)
Add a when predicate clause to a general case expression.
|
CaseExpression |
when(String when)
Add a when clause to a simple case expression.
|
CaseExpression when(Predicate pred)
pred
- -
corresponds to the evaluation condition for the specific caseCaseExpression when(Expression when)
when
- -
corresponds to the value against which the case operand of
the simple case is testedCaseExpression when(Number when)
when
- -
corresponds to the value against which the case operand of
the simple case is testedCaseExpression when(String when)
when
- -
corresponds to the value against which the
case operand of the simple case is testedCaseExpression when(Date when)
when
- -
corresponds to the value against which the case operand of
the simple case is testedCaseExpression when(Calendar when)
when
- -
corresponds to the value against which the case operand of
the simple case is testedCaseExpression when(Class when)
when
- -
corresponds to the value against which the case operand of
the simple case is testedCaseExpression when(Enum<?> when)
when
- -
corresponds to the value against which the case operand of
the simple case is testedCaseExpression then(Expression then)
then
- -
corresponds to the result of the case expression if the when
is satisfiedCaseExpression then(Number then)
then
- -
corresponds to the result of the case expression if the when
is satisfiedCaseExpression then(String then)
then
- -
corresponds to the result of the case expression if the when
is satisfiedCaseExpression then(Date then)
then
- -
corresponds to the result of the case expression if the when
is satisfiedCaseExpression then(Calendar then)
then
- -
corresponds to the result of the case expression if the when
is satisfiedCaseExpression then(Class then)
then
- -
corresponds to the result of the case expression if the when
is satisfiedCaseExpression then(Enum<?> then)
then
- -
corresponds to the result of the case expression if the when
is satisfiedExpression elseCase(Expression arg)
arg
- -
corresponds to the result of the case expression if the when
condition is not satisfiedExpression elseCase(String arg)
arg
- -
corresponds to the result of the case expression if the when
condition is not satisfiedExpression elseCase(Number arg)
arg
- -
corresponds to the result of the case expression if the when
condition is not satisfiedExpression elseCase(Date arg)
arg
- -
corresponds to the result of the case expression if the when
condition is not satisfiedExpression elseCase(Calendar arg)
arg
- -
corresponds to the result of the case expression if the when
condition is not satisfiedExpression elseCase(Class arg)
arg
- -
corresponds to the result of the case expression if the when
condition is not satisfiedExpression elseCase(Enum<?> arg)
arg
- -
corresponds to the result of the case expression if the when
condition is not satisfiedCopyright © 2006–2020 Apache Software Foundation. All rights reserved.