Package org.apache.commons.jexl
Interface Expression
-
- All Superinterfaces:
org.apache.commons.jexl2.Expression
public interface Expression extends org.apache.commons.jexl2.Expression
Jexl-1.x compatible expression.- Since:
- 2.0
- Version:
- $Id$
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
evaluate(JexlContext context)
Evaluates the expression with the variables contained in the suppliedJexlContext
.
-
-
-
Method Detail
-
evaluate
java.lang.Object evaluate(JexlContext context) throws java.lang.Exception
Evaluates the expression with the variables contained in the suppliedJexlContext
.- Parameters:
context
- A JexlContext containing variables.- Returns:
- The result of this evaluation
- Throws:
java.lang.Exception
- on any error
-
-