Creates Expression objects. To create a JEXL Expression object, pass
valid JEXL syntax to the static createExpression() method:
String jexl = "array[1]";
Expression expression = ExpressionFactory.createExpression( jexl );
When an
Expression object is created, the JEXL syntax is
parsed and verified. If the supplied expression is neither an
expression nor a reference, an exception is thrown from createException().
since: 1.0 author: Geir Magnusson Jr. version: $Id: ExpressionFactory.java 429169 2006-08-06 18:36:29Z rahul $ |