Uses of Interface
org.springframework.expression.MethodResolver
Packages that use MethodResolver Package Description org.springframework.expression Core abstractions behind the Spring Expression Language.org.springframework.expression.spel.support SpEL's default implementations for various core abstractions.Uses of MethodResolver in org.springframework.expression
Methods in org.springframework.expression that return types with arguments of type MethodResolver Modifier and Type Method Description List<MethodResolver>EvaluationContext. getMethodResolvers()Return a list of resolvers that will be asked in turn to locate a method.Uses of MethodResolver in org.springframework.expression.spel.support
Classes in org.springframework.expression.spel.support that implement MethodResolver Modifier and Type Class Description classDataBindingMethodResolverAMethodResolvervariant for data binding purposes, using reflection to access instance methods on a given target object.classReflectiveMethodResolverReflection-basedMethodResolverused by default inStandardEvaluationContextunless explicit method resolvers have been specified.Methods in org.springframework.expression.spel.support that return types with arguments of type MethodResolver Modifier and Type Method Description List<MethodResolver>SimpleEvaluationContext. getMethodResolvers()Return the specifiedMethodResolverdelegates, if any.List<MethodResolver>StandardEvaluationContext. getMethodResolvers()Methods in org.springframework.expression.spel.support with parameters of type MethodResolver Modifier and Type Method Description voidStandardEvaluationContext. addMethodResolver(MethodResolver resolver)booleanStandardEvaluationContext. removeMethodResolver(MethodResolver methodResolver)SimpleEvaluationContext.BuilderSimpleEvaluationContext.Builder. withMethodResolvers(MethodResolver... resolvers)Register the specifiedMethodResolverdelegates for a combination of property access and method resolution.Method parameters in org.springframework.expression.spel.support with type arguments of type MethodResolver Modifier and Type Method Description voidStandardEvaluationContext. setMethodResolvers(List<MethodResolver> methodResolvers)