Uses of Interface
org.apache.commons.jexl.JexlContext

Packages that use JexlContext
org.apache.commons.jexl Provides a framework for evaluating JEXL expressions. 
org.apache.commons.jexl.context Simple JexlContext implementations. 
org.apache.commons.jexl.parser Contains the Parser for JEXL script. 
org.apache.commons.jexl.resolver   
 

Uses of JexlContext in org.apache.commons.jexl
 

Methods in org.apache.commons.jexl that return JexlContext
static JexlContext JexlHelper.createContext()
          Returns a new JexlContext.
protected  JexlContext JexlHelper.newContext()
          Creates and returns a new JexlContext.
 

Methods in org.apache.commons.jexl with parameters of type JexlContext
 Object JexlExprResolver.evaluate(JexlContext context, String expression)
          Evaluates an expression against the context.
 Object Script.execute(JexlContext context)
          Executes the script with the variables contained in the supplied JexlContext.
 Object Expression.evaluate(JexlContext context)
          Evaluates the expression with the variables contained in the supplied JexlContext.
 

Uses of JexlContext in org.apache.commons.jexl.context
 

Classes in org.apache.commons.jexl.context that implement JexlContext
 class HashMapContext
          Implementation of JexlContext based on a HashMap.
 

Uses of JexlContext in org.apache.commons.jexl.parser
 

Methods in org.apache.commons.jexl.parser with parameters of type JexlContext
 Object ASTLTNode.value(JexlContext jc)
          Gets the value of this node.
 Object ASTStatementExpression.value(JexlContext context)
          Gets the value of this node.
 Object ASTStringLiteral.value(JexlContext jc)
          Gets the value of this node.
 Object ASTFloatLiteral.value(JexlContext jc)
          Gets the value of this node.
 Object ASTUnaryMinusNode.value(JexlContext jc)
          Gets the value of this node.
 Object ASTGTNode.value(JexlContext jc)
          Gets the value of this node.
 Object ASTExpressionExpression.value(JexlContext context)
          Gets the value of this node.
 Object ASTBitwiseOrNode.value(JexlContext context)
          Gets the value of this node.
 Object ASTSizeMethod.execute(Object obj, JexlContext jc)
          evaluate size as part of an expression on a base object.
 Object ASTIntegerLiteral.execute(Object obj, JexlContext ctx)
          Part of reference resolution - wierd...
 Object ASTIntegerLiteral.value(JexlContext jc)
          Gets the value of this node.
 Object ASTMulNode.value(JexlContext context)
          Gets the value of this node.
 Object ASTFalseNode.value(JexlContext jc)
          Gets the value of this node.
 Object ASTSubtractNode.value(JexlContext context)
          Gets the value of this node.
 Object ASTForeachStatement.value(JexlContext jc)
          Gets the value of this node.
 Object ASTOrNode.value(JexlContext jc)
          Gets the value of this node.
 Object ASTTrueNode.value(JexlContext jc)
          Gets the value of this node.
 Object ASTModNode.value(JexlContext jc)
          Gets the value of this node.
 Object ASTIfStatement.value(JexlContext jc)
          Gets the value of this node.
 Object ASTIdentifier.value(JexlContext jc)
          Gets the value of this node.
 Object ASTIdentifier.execute(Object obj, JexlContext jc)
          returns the value of itself applied to the object.
 Object ASTSizeFunction.value(JexlContext jc)
          Gets the value of this node.
 Object ASTMethod.execute(Object obj, JexlContext jc)
          evaluate a method invocation upon a base object.
 Object ASTEQNode.value(JexlContext pc)
          Gets the value of this node.
 Object ASTAssignment.value(JexlContext context)
          Gets the value of this node.
 Object ASTAndNode.value(JexlContext jc)
          Gets the value of this node.
 Object ASTNENode.value(JexlContext pc)
          Gets the value of this node.
 Object ASTBitwiseComplNode.value(JexlContext context)
          Gets the value of this node.
 Object ASTLENode.value(JexlContext jc)
          Gets the value of this node.
 Object ASTNotNode.value(JexlContext jc)
          Gets the value of this node.
 Object ASTBitwiseXorNode.value(JexlContext context)
          Gets the value of this node.
 Object ASTEmptyFunction.value(JexlContext jc)
          Gets the value of this node.
 Object ASTGENode.value(JexlContext jc)
          Gets the value of this node.
 Object ASTArrayAccess.execute(Object obj, JexlContext jc)
          evaluate array access upon a base object.
 Object ASTArrayAccess.value(JexlContext jc)
          Gets the value of this node.
 Object ASTExpression.value(JexlContext context)
          Gets the value of this node.
 Object ASTBitwiseAndNode.value(JexlContext context)
          Gets the value of this node.
 Object ASTReferenceExpression.value(JexlContext context)
          Gets the value of this node.
 Object ASTAddNode.value(JexlContext context)
          Gets the value of this node.
 Object ASTReference.value(JexlContext jc)
          Gets the value of this node.
 Object ASTReference.execute(Object obj, JexlContext jc)
          evaluate each piece of the reference.
 Object ASTBlock.value(JexlContext context)
           
 Object ASTDivNode.value(JexlContext jc)
          Gets the value of this node.
 boolean SimpleNode.interpret(JexlContext pc)
          basic interpret - just invoke interpret on all children.
 Object SimpleNode.value(JexlContext context)
          Gets the value of this node.
 Object SimpleNode.setValue(JexlContext context, Object value)
          Sets the value for the node - again, only makes sense for some nodes but lazyness tempts me to put it here.
 Object SimpleNode.execute(Object o, JexlContext ctx)
          Used to let a node calcuate it's value..
 Object ASTJexlScript.value(JexlContext jc)
          Gets the value of this node.
 Object ASTNullLiteral.value(JexlContext context)
          Gets the value of this node.
 Object ASTWhileStatement.value(JexlContext jc)
          Gets the value of this node.
 

Uses of JexlContext in org.apache.commons.jexl.resolver
 

Methods in org.apache.commons.jexl.resolver with parameters of type JexlContext
 Object FlatResolver.evaluate(JexlContext context, String expression)
          Try to resolve expression as-is.
 



Copyright © 2003-2006 The Apache Software Foundation. All Rights Reserved.