Uses of Interface
org.springframework.expression.IndexAccessor
Package
Description
Core abstractions behind the Spring Expression Language.
SpEL's central implementation package.
SpEL's default implementations for various core abstractions.
-
Uses of IndexAccessor in org.springframework.expression
Modifier and TypeMethodDescriptiondefault List<IndexAccessor>
EvaluationContext.getIndexAccessors()
Return a list of index accessors that will be asked in turn to access or set an indexed value. -
Uses of IndexAccessor in org.springframework.expression.spel
Modifier and TypeInterfaceDescriptioninterface
A compilableIndexAccessor
is able to generate bytecode that represents the operation for reading the index, facilitating compilation to bytecode of expressions that use the accessor. -
Uses of IndexAccessor in org.springframework.expression.spel.support
Modifier and TypeClassDescriptionclass
A flexibleIndexAccessor
that uses reflection to read from and optionally write to an indexed structure of a target object.Modifier and TypeMethodDescriptionSimpleEvaluationContext.getIndexAccessors()
Return the specifiedIndexAccessor
delegates, if any.StandardEvaluationContext.getIndexAccessors()
Get the list of index accessors configured in this evaluation context.Modifier and TypeMethodDescriptionvoid
StandardEvaluationContext.addIndexAccessor
(IndexAccessor indexAccessor) Add the supplied index accessor to this evaluation context.boolean
StandardEvaluationContext.removeIndexAccessor
(IndexAccessor indexAccessor) Remove the supplied index accessor from this evaluation context.SimpleEvaluationContext.Builder.withIndexAccessors
(IndexAccessor... indexAccessors) Register the specifiedIndexAccessor
delegates.Modifier and TypeMethodDescriptionvoid
StandardEvaluationContext.setIndexAccessors
(List<IndexAccessor> indexAccessors) Set the list of index accessors to use in this evaluation context.