| java.lang.Object | |
| ↳ | org.springframework.expression.spel.support.StandardEvaluationContext |
Provides a default EvaluationContext implementation.
To resolve properties/methods/fields this context uses a reflection mechanism.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
org.springframework.expression.EvaluationContext
| |||||||||||
Look up a named variable within this evaluation context.
| name | variable to lookup |
|---|
Register a MethodFilter which will be called during method resolution for the specified type. The MethodFilter may remove methods and/or sort the methods which will then be used by SpEL as the candidates to look through for a match.
| type | the type for which the filter should be called |
|---|---|
| filter | a MethodFilter, or NULL to deregister a filter for the type |
Set a named variable within this evaluation context to a specified value.
| name | variable to set |
|---|---|
| value | value to be placed in the variable |