接口的使用
cn.taketoday.expression.EvaluationContext
使用EvaluationContext的程序包
程序包
说明
Core abstractions behind the Spring Expression Language.
Common utility classes behind the Spring Expression Language.
SpEL's central implementation package.
SpEL's abstract syntax tree.
SpEL's standard parser implementation.
SpEL's default implementations for various core abstractions.
-
cn.taketoday.expression中EvaluationContext的使用
参数类型为EvaluationContext的cn.taketoday.expression中的方法修饰符和类型方法说明booleanPropertyAccessor.canRead(EvaluationContext context, Object target, String name) Called to determine if a resolver instance is able to access a specified property on a specified target object.booleanPropertyAccessor.canWrite(EvaluationContext context, Object target, String name) Called to determine if a resolver instance is able to write to a specified property on a specified target object.ConstructorExecutor.execute(EvaluationContext context, Object... arguments) Execute a constructor in the specified context using the specified arguments.MethodExecutor.execute(EvaluationContext context, Object target, Object... arguments) Execute a command using the specified arguments, and using the specified expression state.Expression.getValue(EvaluationContext context) Evaluate this expression in the provided context and return the result of evaluation.<T> TExpression.getValue(EvaluationContext context, Class<T> desiredResultType) Evaluate the expression in a specified context which can resolve references to properties, methods, types, etc.Expression.getValue(EvaluationContext context, Object rootObject) Evaluate this expression in the provided context and return the result of evaluation, but use the supplied root context as an override for any default root object specified in the context.<T> TExpression.getValue(EvaluationContext context, Object rootObject, Class<T> desiredResultType) Evaluate the expression in a specified context which can resolve references to properties, methods, types, etc.Class<?>Expression.getValueType(EvaluationContext context) Return the most general type that can be passed to theExpression.setValue(EvaluationContext, Object)method for the given context.Class<?>Expression.getValueType(EvaluationContext context, Object rootObject) Return the most general type that can be passed to theExpression.setValue(EvaluationContext, Object, Object)method for the given context.Expression.getValueTypeDescriptor(EvaluationContext context) Return the most general type that can be passed to theExpression.setValue(EvaluationContext, Object)method for the given context.Expression.getValueTypeDescriptor(EvaluationContext context, Object rootObject) Return the most general type that can be passed to theExpression.setValue(EvaluationContext, Object, Object)method for the given context.booleanExpression.isWritable(EvaluationContext context) Determine if an expression can be written to, i.e. setValue() can be called.booleanExpression.isWritable(EvaluationContext context, Object rootObject) Determine if an expression can be written to, i.e. setValue() can be called.PropertyAccessor.read(EvaluationContext context, Object target, String name) Called to read a property from a specified target object.BeanResolver.resolve(EvaluationContext context, String beanName) Look up a bean by the given name and return a corresponding instance for it.ConstructorResolver.resolve(EvaluationContext context, String typeName, List<TypeDescriptor> argumentTypes) Within the supplied context determine a suitable constructor on the supplied type that can handle the specified arguments.MethodResolver.resolve(EvaluationContext context, Object targetObject, String name, List<TypeDescriptor> argumentTypes) Within the supplied context determine a suitable method on the supplied object that can handle the specified arguments.voidExpression.setValue(EvaluationContext context, Object value) Set this expression in the provided context to the value provided.voidExpression.setValue(EvaluationContext context, Object rootObject, Object value) Set this expression in the provided context to the value provided.voidPropertyAccessor.write(EvaluationContext context, Object target, String name, Object newValue) Called to write to a property on a specified target object. -
cn.taketoday.expression.common中EvaluationContext的使用
修饰符和类型方法说明static <T> TExpressionUtils.convertTypedValue(EvaluationContext context, TypedValue typedValue, Class<T> targetType) Determines if there is a type converter available in the specified context and attempts to use it to convert the supplied value to the specified type.CompositeStringExpression.getValue(EvaluationContext context) <T> TCompositeStringExpression.getValue(EvaluationContext context, Class<T> expectedResultType) CompositeStringExpression.getValue(EvaluationContext context, Object rootObject) <T> TCompositeStringExpression.getValue(EvaluationContext context, Object rootObject, Class<T> desiredResultType) LiteralExpression.getValue(EvaluationContext context) <T> TLiteralExpression.getValue(EvaluationContext context, Class<T> expectedResultType) LiteralExpression.getValue(EvaluationContext context, Object rootObject) <T> TLiteralExpression.getValue(EvaluationContext context, Object rootObject, Class<T> desiredResultType) Class<?>CompositeStringExpression.getValueType(EvaluationContext context) Class<?>CompositeStringExpression.getValueType(EvaluationContext context, Object rootObject) Class<?>LiteralExpression.getValueType(EvaluationContext context) Class<?>LiteralExpression.getValueType(EvaluationContext context, Object rootObject) CompositeStringExpression.getValueTypeDescriptor(EvaluationContext context) CompositeStringExpression.getValueTypeDescriptor(EvaluationContext context, Object rootObject) LiteralExpression.getValueTypeDescriptor(EvaluationContext context) LiteralExpression.getValueTypeDescriptor(EvaluationContext context, Object rootObject) booleanCompositeStringExpression.isWritable(EvaluationContext context) booleanCompositeStringExpression.isWritable(EvaluationContext context, Object rootObject) booleanLiteralExpression.isWritable(EvaluationContext context) booleanLiteralExpression.isWritable(EvaluationContext context, Object rootObject) voidCompositeStringExpression.setValue(EvaluationContext context, Object value) voidCompositeStringExpression.setValue(EvaluationContext context, Object rootObject, Object value) voidLiteralExpression.setValue(EvaluationContext context, Object value) voidLiteralExpression.setValue(EvaluationContext context, Object rootObject, Object value) -
cn.taketoday.expression.spel中EvaluationContext的使用
修饰符和类型方法说明abstract ObjectCompiledExpression.getValue(Object target, EvaluationContext context) Subclasses of CompiledExpression generated by SpelCompiler will provide an implementation of this method.限定符构造器说明ExpressionState(EvaluationContext context) ExpressionState(EvaluationContext context, SpelParserConfiguration configuration) ExpressionState(EvaluationContext context, TypedValue rootObject) ExpressionState(EvaluationContext context, TypedValue rootObject, SpelParserConfiguration configuration) -
cn.taketoday.expression.spel.ast中EvaluationContext的使用
修饰符和类型方法说明static booleanOperator.equalityCheck(EvaluationContext context, Object left, Object right) Perform an equality check for the given operand values.booleanPropertyOrFieldReference.isWritableProperty(String name, TypedValue contextObject, EvaluationContext evalContext) -
cn.taketoday.expression.spel.standard中EvaluationContext的使用
修饰符和类型方法说明SpelExpression.getEvaluationContext()Return the default evaluation context that will be used if none is supplied on an evaluation call.修饰符和类型方法说明SpelExpression.getValue(EvaluationContext context) <T> TSpelExpression.getValue(EvaluationContext context, Class<T> expectedResultType) SpelExpression.getValue(EvaluationContext context, Object rootObject) <T> TSpelExpression.getValue(EvaluationContext context, Object rootObject, Class<T> expectedResultType) Class<?>SpelExpression.getValueType(EvaluationContext context) Class<?>SpelExpression.getValueType(EvaluationContext context, Object rootObject) SpelExpression.getValueTypeDescriptor(EvaluationContext context) SpelExpression.getValueTypeDescriptor(EvaluationContext context, Object rootObject) booleanSpelExpression.isWritable(EvaluationContext context) booleanSpelExpression.isWritable(EvaluationContext context, Object rootObject) voidSpelExpression.setEvaluationContext(EvaluationContext evaluationContext) Set the evaluation context that will be used if none is specified on an evaluation call.voidSpelExpression.setValue(EvaluationContext context, Object value) voidSpelExpression.setValue(EvaluationContext context, Object rootObject, Object value) -
cn.taketoday.expression.spel.support中EvaluationContext的使用
修饰符和类型类说明final classA basic implementation ofEvaluationContextthat focuses on a subset of essential SpEL features and customization options, targeting simple condition evaluation and in particular data binding scenarios.classA powerful and highly configurableEvaluationContextimplementation.修饰符和类型方法说明booleanReflectivePropertyAccessor.canRead(EvaluationContext context, Object target, String name) booleanReflectivePropertyAccessor.OptimalPropertyAccessor.canRead(EvaluationContext context, Object target, String name) booleanReflectivePropertyAccessor.canWrite(EvaluationContext context, Object target, String name) booleanReflectivePropertyAccessor.OptimalPropertyAccessor.canWrite(EvaluationContext context, Object target, String name) ReflectivePropertyAccessor.createOptimalAccessor(EvaluationContext context, Object target, String name) Attempt to create an optimized property accessor tailored for a property of a particular name on a particular class.ReflectiveConstructorExecutor.execute(EvaluationContext context, Object... arguments) ReflectiveMethodExecutor.execute(EvaluationContext context, Object target, Object... arguments) ReflectivePropertyAccessor.OptimalPropertyAccessor.read(EvaluationContext context, Object target, String name) ReflectivePropertyAccessor.read(EvaluationContext context, Object target, String name) DataBindingMethodResolver.resolve(EvaluationContext context, Object targetObject, String name, List<TypeDescriptor> argumentTypes) ReflectiveConstructorResolver.resolve(EvaluationContext context, String typeName, List<TypeDescriptor> argumentTypes) Locate a constructor on the type.ReflectiveMethodResolver.resolve(EvaluationContext context, Object targetObject, String name, List<TypeDescriptor> argumentTypes) Locate a method on a type.voidReflectivePropertyAccessor.OptimalPropertyAccessor.write(EvaluationContext context, Object target, String name, Object newValue) voidReflectivePropertyAccessor.write(EvaluationContext context, Object target, String name, Object newValue)