|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectnet.christopherschultz.evaluator.function.IfFunction
public class IfFunction
Implements an if-then-else construct as a function.
Usage: if(predicate, then-expression, else-expression)
This function returns the result of the then-expression
if the predicate evaluates to true, or returns
the result of the else-expression if predicate
evaluates to false. null is returned
if the predicate returns null.
| Constructor Summary | |
|---|---|
IfFunction()
Creates a new IfFunction object. |
|
| Method Summary | |
|---|---|
Object |
call(EvaluationContext ec,
String functionName,
List argumentExpressions)
Invokes the function with the specified argument expressions in the specified evaluation context. |
String |
toString()
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public IfFunction()
| Method Detail |
|---|
public Object call(EvaluationContext ec,
String functionName,
List argumentExpressions)
throws EvaluationException
Function
call in interface Functionec - The EvaluationContext in which this function is being called.functionName - The name of the function being called.argumentExpressions - The expressions which, when evaluated, result
in the arguments to the function.
EvaluationException - If there is a problem evaluating any of
the arguments' expressions, or if there is
an error during function execution.public String toString()
toString in class Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||