public class ExpressionFactoryImpl extends ExpressionFactory
ExpressionFactory
Constructor and Description |
---|
ExpressionFactoryImpl() |
Modifier and Type | Method and Description |
---|---|
Object |
coerceToType(Object obj,
Class<?> type)
Coerce the supplied object to the requested type.
|
MethodExpression |
createMethodExpression(ELContext context,
String expression,
Class<?> expectedReturnType,
Class<?>[] expectedParamTypes)
Create a new method expression instance.
|
ValueExpression |
createValueExpression(ELContext context,
String expression,
Class<?> expectedType)
Create a new value expression.
|
ValueExpression |
createValueExpression(Object instance,
Class<?> expectedType) |
newInstance, newInstance
public Object coerceToType(Object obj, Class<?> type)
ExpressionFactory
coerceToType
in class ExpressionFactory
obj
- The object to be coercedtype
- The type to which the object should be coercedpublic MethodExpression createMethodExpression(ELContext context, String expression, Class<?> expectedReturnType, Class<?>[] expectedParamTypes)
ExpressionFactory
createMethodExpression
in class ExpressionFactory
context
- The EL context for this evaluationexpression
- The String representation of the method
expressionexpectedReturnType
- The expected type of the result of invoking the
methodexpectedParamTypes
- The expected types of the input parameterspublic ValueExpression createValueExpression(ELContext context, String expression, Class<?> expectedType)
ExpressionFactory
createValueExpression
in class ExpressionFactory
context
- The EL context for this evaluationexpression
- The String representation of the value expressionexpectedType
- The expected type of the result of evaluating the
expressionpublic ValueExpression createValueExpression(Object instance, Class<?> expectedType)
createValueExpression
in class ExpressionFactory
Copyright © 2000-2021 Apache Software Foundation. All Rights Reserved.