类 CompiledExpression
java.lang.Object
cn.taketoday.expression.spel.CompiledExpression
Base superclass for compiled expressions. Each generated compiled expression class
will extend this class and implement the
getValue(java.lang.Object, cn.taketoday.expression.EvaluationContext) method. It is not intended
to be subclassed by user code.- 从以下版本开始:
- 4.0
- 作者:
- Andy Clement
-
构造器概要
构造器 -
方法概要
修饰符和类型方法说明abstract ObjectgetValue(Object target, EvaluationContext context) Subclasses of CompiledExpression generated by SpelCompiler will provide an implementation of this method.
-
构造器详细资料
-
CompiledExpression
public CompiledExpression()
-
-
方法详细资料
-
getValue
public abstract Object getValue(@Nullable Object target, @Nullable EvaluationContext context) throws EvaluationException Subclasses of CompiledExpression generated by SpelCompiler will provide an implementation of this method.
-