Uses of Interface
org.springframework.expression.ConstructorResolver
Packages that use ConstructorResolver
Package
Description
Core abstractions behind the Spring Expression Language.
SpEL's default implementations for various core abstractions.
-
Uses of ConstructorResolver in org.springframework.expression
Methods in org.springframework.expression that return types with arguments of type ConstructorResolverModifier and TypeMethodDescriptiondefault List<ConstructorResolver>
EvaluationContext.getConstructorResolvers()
Return a list of resolvers that will be asked in turn to locate a constructor. -
Uses of ConstructorResolver in org.springframework.expression.spel.support
Classes in org.springframework.expression.spel.support that implement ConstructorResolverModifier and TypeClassDescriptionclass
A constructor resolver that uses reflection to locate the constructor that should be invoked.Methods in org.springframework.expression.spel.support that return types with arguments of type ConstructorResolverModifier and TypeMethodDescriptionStandardEvaluationContext.getConstructorResolvers()
Get the list of constructor resolvers to use in this evaluation context.Methods in org.springframework.expression.spel.support with parameters of type ConstructorResolverModifier and TypeMethodDescriptionvoid
StandardEvaluationContext.addConstructorResolver
(ConstructorResolver constructorResolver) Add the supplied constructor resolver to this evaluation context.boolean
StandardEvaluationContext.removeConstructorResolver
(ConstructorResolver constructorResolver) Remove the supplied constructor resolver from this evaluation context.Method parameters in org.springframework.expression.spel.support with type arguments of type ConstructorResolverModifier and TypeMethodDescriptionvoid
StandardEvaluationContext.setConstructorResolvers
(List<ConstructorResolver> constructorResolvers) Set the list of constructor resolvers to use in this evaluation context.