Uses of Class
org.apache.commons.el.Expression

Packages that use Expression
org.apache.commons.el   
org.apache.commons.el.parser   
 

Uses of Expression in org.apache.commons.el
 

Subclasses of Expression in org.apache.commons.el
 class BinaryOperatorExpression
          An expression representing a binary operator on a value
 class BooleanLiteral
          An expression representing a boolean literal value
 class BoundFunctionInvocation
          A subclass of FunctionInvocation which is bound to a particular Method.
 class ComplexValue
          Represents a dynamic value, which consists of a prefix and an optional set of ValueSuffix elements.
 class ConditionalExpression
          Represents a conditional expression.
 class ExpressionString
          Represents an expression String consisting of a mixture of Strings and Expressions.
 class FloatingPointLiteral
          An expression representing a floating point literal value.
 class FunctionInvocation
          Represents a function call.
 class IntegerLiteral
          An expression representing an integer literal value.
 class Literal
          An expression representing a literal value
 class NamedValue
          Represents a name that can be used as the first element of a value.
 class NullLiteral
          An expression representing a null literal value
 class StringLiteral
          An expression representing a String literal value.
 class UnaryOperatorExpression
          An expression representing one or more unary operators on a value
 

Methods in org.apache.commons.el that return Expression
abstract  Expression Expression.bindFunctions(javax.servlet.jsp.el.FunctionMapper functions)
          Returns an expression with all FunctionInvocations replaced by BoundFunctionInvocations.
 Expression NamedValue.bindFunctions(javax.servlet.jsp.el.FunctionMapper functions)
           
 Expression FunctionInvocation.bindFunctions(javax.servlet.jsp.el.FunctionMapper functions)
           
 Expression Literal.bindFunctions(javax.servlet.jsp.el.FunctionMapper functions)
           
 Expression ExpressionString.bindFunctions(javax.servlet.jsp.el.FunctionMapper functions)
           
 Expression BinaryOperatorExpression.bindFunctions(javax.servlet.jsp.el.FunctionMapper functions)
           
 Expression ConditionalExpression.bindFunctions(javax.servlet.jsp.el.FunctionMapper functions)
           
 Expression ComplexValue.bindFunctions(javax.servlet.jsp.el.FunctionMapper functions)
           
 Expression UnaryOperatorExpression.bindFunctions(javax.servlet.jsp.el.FunctionMapper functions)
           
 Expression ConditionalExpression.getCondition()
           
 Expression BinaryOperatorExpression.getExpression()
           
 Expression UnaryOperatorExpression.getExpression()
           
 Expression ConditionalExpression.getFalseBranch()
           
 Expression ArraySuffix.getIndex()
           
 Expression ComplexValue.getPrefix()
           
 Expression ConditionalExpression.getTrueBranch()
           
 

Methods in org.apache.commons.el with parameters of type Expression
 void ConditionalExpression.setCondition(Expression pCondition)
           
 void BinaryOperatorExpression.setExpression(Expression pExpression)
           
 void UnaryOperatorExpression.setExpression(Expression pExpression)
           
 void ConditionalExpression.setFalseBranch(Expression pFalseBranch)
           
 void ArraySuffix.setIndex(Expression pIndex)
           
 void ComplexValue.setPrefix(Expression pPrefix)
           
 void ConditionalExpression.setTrueBranch(Expression pTrueBranch)
           
 

Constructors in org.apache.commons.el with parameters of type Expression
ArraySuffix(Expression pIndex)
          Constructor
BinaryOperatorExpression(Expression pExpression, List pOperators, List pExpressions)
          Constructor
ComplexValue(Expression pPrefix, List pSuffixes)
          Constructor
ConditionalExpression(Expression pCondition, Expression pTrueBranch, Expression pFalseBranch)
          Constructor
UnaryOperatorExpression(UnaryOperator pOperator, List pOperators, Expression pExpression)
          Constructor
 

Uses of Expression in org.apache.commons.el.parser
 

Methods in org.apache.commons.el.parser that return Expression
 Expression ELParser.AddExpression()
           
 Expression ELParser.AndExpression()
           
 Expression ELParser.AttrValueExpression()
           
 Expression ELParser.ConditionalExpression()
           
 Expression ELParser.EqualityExpression()
           
 Expression ELParser.Expression()
           
 Expression ELParser.MultiplyExpression()
           
 Expression ELParser.OrExpression()
           
 Expression ELParser.RelationalExpression()
           
 Expression ELParser.UnaryExpression()
           
 Expression ELParser.Value()
           
 Expression ELParser.ValuePrefix()
          This is an element that can start a value
 



Copyright © 2003-2011 Apache Software Foundation. All Rights Reserved.