public class UnaryOperatorExpression extends Expression
An expression representing one or more unary operators on a value
| Constructor and Description |
|---|
UnaryOperatorExpression(UnaryOperator pOperator,
List pOperators,
Expression pExpression)
Constructor
|
| Modifier and Type | Method and Description |
|---|---|
Expression |
bindFunctions(FunctionMapper functions)
Returns an expression with all
FunctionInvocations replaced by
BoundFunctionInvocations. |
Object |
evaluate(VariableResolver pResolver,
FunctionMapper functions)
Evaluates to the literal value
|
Expression |
getExpression() |
String |
getExpressionString()
Returns the expression in the expression language syntax
|
UnaryOperator |
getOperator() |
List |
getOperators() |
void |
setExpression(Expression pExpression) |
void |
setOperator(UnaryOperator pOperator) |
void |
setOperators(List pOperators) |
public UnaryOperatorExpression(UnaryOperator pOperator, List pOperators, Expression pExpression)
public UnaryOperator getOperator()
public void setOperator(UnaryOperator pOperator)
public List getOperators()
public void setOperators(List pOperators)
public Expression getExpression()
public void setExpression(Expression pExpression)
public String getExpressionString()
getExpressionString in class Expressionpublic Object evaluate(VariableResolver pResolver, FunctionMapper functions) throws ELException
evaluate in class ExpressionELExceptionpublic Expression bindFunctions(FunctionMapper functions) throws ELException
ExpressionFunctionInvocations replaced by
BoundFunctionInvocations.bindFunctions in class Expressionfunctions - the functions to use in this transformationFunctionInvocations replaced by
BoundFunctionInvocations.ELException - if any of the functions in this Expression are
not present in functionsCopyright © 2003-2013 The Apache Software Foundation. All Rights Reserved.