Class ExpressionFactoryImpl
- java.lang.Object
-
- org.jdesktop.el.ExpressionFactory
-
- org.jdesktop.el.impl.ExpressionFactoryImpl
-
public class ExpressionFactoryImpl extends ExpressionFactory
- Version:
- $Change: 181177 $$DateTime: 2001/06/26 08:45:09 $$Author: spuhl $
- Author:
- Jacob Hookom [jacob@hookom.net]
- See Also:
javax.el.ExpressionFactory
-
-
Constructor Summary
Constructors Constructor Description ExpressionFactoryImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectcoerceToType(Object obj, Class type)Coerces an object to a specific type according to the EL type conversion rules.MethodExpressioncreateMethodExpression(ELContext context, String expression, Class expectedReturnType, Class[] expectedParamTypes)Parses an expression into aMethodExpressionfor later evaluation.ValueExpressioncreateValueExpression(Object instance, Class expectedType)Creates a ValueExpression that wraps an object instance.ValueExpressioncreateValueExpression(ELContext context, String expression, Class expectedType)Parses an expression into aValueExpressionfor later evaluation.
-
-
-
Method Detail
-
coerceToType
public Object coerceToType(Object obj, Class type)
Description copied from class:ExpressionFactoryCoerces an object to a specific type according to the EL type conversion rules.An
ELExceptionis thrown if an error results from applying the conversion rules.- Specified by:
coerceToTypein classExpressionFactory- Parameters:
obj- The object to coerce.type- The target type for the coercion.
-
createMethodExpression
public MethodExpression createMethodExpression(ELContext context, String expression, Class expectedReturnType, Class[] expectedParamTypes)
Description copied from class:ExpressionFactoryParses an expression into aMethodExpressionfor later evaluation. Use this method for expressions that refer to methods.If the expression is a String literal, a
MethodExpressionis created, which when invoked, returns the String literal, coerced to expectedReturnType. An ELException is thrown if expectedReturnType is void or if the coercion of the String literal to the expectedReturnType yields an error (see Section "1.16 Type Conversion").This method should perform syntactic validation of the expression. If in doing so it detects errors, it should raise an
ELException.- Specified by:
createMethodExpressionin classExpressionFactory- Parameters:
context- The EL context used to parse the expression. TheFunctionMapperandVariableMapperstored in the ELContext are used to resolve functions and variables found in the expression. They can benull, in which case functions or variables are not supported for this expression. The object returned must invoke the same functions and access the same variable mappings regardless of whether the mappings in the providedFunctionMapperandVariableMapperinstances change between callingExpressionFactory.createMethodExpression()and any method onMethodExpression.Note that within the EL, the ${} and #{} syntaxes are treated identically. This includes the use of VariableMapper and FunctionMapper at expression creation time. Each is invoked if not null, independent of whether the #{} or ${} syntax is used for the expression.
expression- The expression to parseexpectedReturnType- The expected return type for the method to be found. After evaluating the expression, theMethodExpressionmust check that the return type of the actual method matches this type. Passing in a value ofnullindicates the caller does not care what the return type is, and the check is disabled.expectedParamTypes- The expected parameter types for the method to be found. Must be an array with no elements if there are no parameters expected. It is illegal to passnull.- Returns:
- The parsed expression
-
createValueExpression
public ValueExpression createValueExpression(ELContext context, String expression, Class expectedType)
Description copied from class:ExpressionFactoryParses an expression into aValueExpressionfor later evaluation. Use this method for expressions that refer to values.This method should perform syntactic validation of the expression. If in doing so it detects errors, it should raise an
ELException.- Specified by:
createValueExpressionin classExpressionFactory- Parameters:
context- The EL context used to parse the expression. TheFunctionMapperandVariableMapperstored in the ELContext are used to resolve functions and variables found in the expression. They can benull, in which case functions or variables are not supported for this expression. The object returned must invoke the same functions and access the same variable mappings regardless of whether the mappings in the providedFunctionMapperandVariableMapperinstances change between callingExpressionFactory.createValueExpression()and any method onValueExpression.Note that within the EL, the ${} and #{} syntaxes are treated identically. This includes the use of VariableMapper and FunctionMapper at expression creation time. Each is invoked if not null, independent of whether the #{} or ${} syntax is used for the expression.
expression- The expression to parseexpectedType- The type the result of the expression will be coerced to after evaluation.- Returns:
- The parsed expression
-
createValueExpression
public ValueExpression createValueExpression(Object instance, Class expectedType)
Description copied from class:ExpressionFactoryCreates a ValueExpression that wraps an object instance. This method can be used to pass any object as a ValueExpression. The wrapper ValueExpression is read only, and returns the wrapped object via itsgetValue()method, optionally coerced.- Specified by:
createValueExpressionin classExpressionFactory- Parameters:
instance- The object instance to be wrapped.expectedType- The type the result of the expression will be coerced to after evaluation. There will be no coercion if it is Object.class,
-
-