接口的使用
cn.taketoday.expression.ConstructorExecutor
使用ConstructorExecutor的程序包
程序包
说明
Core abstractions behind the Spring Expression Language.
SpEL's abstract syntax tree.
SpEL's default implementations for various core abstractions.
-
cn.taketoday.expression中ConstructorExecutor的使用
修饰符和类型方法说明ConstructorResolver.resolve(EvaluationContext context, String typeName, List<TypeDescriptor> argumentTypes) Within the supplied context, resolve a suitable constructor on the supplied type that can handle the specified arguments. -
cn.taketoday.expression.spel.ast中ConstructorExecutor的使用
修饰符和类型字段说明private ConstructorExecutorConstructorReference.cachedExecutorThe cached executor that may be reused on subsequent evaluations.修饰符和类型方法说明private ConstructorExecutorConstructorReference.findExecutorForConstructor(String typeName, List<TypeDescriptor> argumentTypes, ExpressionState state) Go through the list of registered constructor resolvers and see if any can find a constructor that takes the specified set of arguments. -
cn.taketoday.expression.spel.support中ConstructorExecutor的使用
修饰符和类型类说明classA simple ConstructorExecutor implementation that runs a constructor using reflective invocation.修饰符和类型方法说明ReflectiveConstructorResolver.resolve(EvaluationContext context, String typeName, List<TypeDescriptor> argumentTypes) Locate a constructor on the type.