Uses of Class
org.springframework.expression.spel.support.SimpleEvaluationContext.Builder
Packages that use SimpleEvaluationContext.Builder
Package
Description
SpEL's default implementations for various core abstractions.
- 
Uses of SimpleEvaluationContext.Builder in org.springframework.expression.spel.supportMethods in org.springframework.expression.spel.support that return SimpleEvaluationContext.BuilderModifier and TypeMethodDescriptionSimpleEvaluationContext.forPropertyAccessors(PropertyAccessor... accessors) Create aSimpleEvaluationContextfor the specifiedPropertyAccessordelegates: typically a customPropertyAccessorspecific to a use case — for example, for attribute resolution in a custom data structure — potentially combined with aDataBindingPropertyAccessorif property dereferences are needed as well.SimpleEvaluationContext.forReadOnlyDataBinding()Create aSimpleEvaluationContextfor read-only access to public properties viaDataBindingPropertyAccessor.SimpleEvaluationContext.forReadWriteDataBinding()Create aSimpleEvaluationContextfor read-write access to public properties viaDataBindingPropertyAccessor.SimpleEvaluationContext.Builder.withAssignmentDisabled()Disable assignment within expressions evaluated by this evaluation context.SimpleEvaluationContext.Builder.withConversionService(ConversionService conversionService) Register a customConversionService.SimpleEvaluationContext.Builder.withIndexAccessors(IndexAccessor... indexAccessors) Register the specifiedIndexAccessordelegates.SimpleEvaluationContext.Builder.withInstanceMethods()Register aDataBindingMethodResolverfor instance method invocation purposes (i.e.SimpleEvaluationContext.Builder.withMethodResolvers(MethodResolver... resolvers) Register the specifiedMethodResolverdelegates for a combination of property access and method resolution.SimpleEvaluationContext.Builder.withRootObject(Object rootObject) Specify a default root object to resolve against.SimpleEvaluationContext.Builder.withTypeConverter(TypeConverter converter) Register a customTypeConverter.SimpleEvaluationContext.Builder.withTypedRootObject(Object rootObject, TypeDescriptor typeDescriptor) Specify a typed root object to resolve against.