Class VariablesELContext
java.lang.Object
jakarta.el.ELContext
jakarta.el.StandardELContext
org.hibernate.validator.internal.engine.messageinterpolation.el.VariablesELContext
- Author:
- Guillaume Smet
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddELResolver(ELResolver cELResolver) Add a custom ELResolver to the context.Construct (if needed) and return a default ELResolver.Methods inherited from class jakarta.el.StandardELContext
getContext, getFunctionMapper, getVariableMapper, putContextMethods inherited from class jakarta.el.ELContext
addEvaluationListener, convertToType, enterLambdaScope, exitLambdaScope, getEvaluationListeners, getImportHandler, getLambdaArgument, getLocale, isLambdaArgument, isPropertyResolved, notifyAfterEvaluation, notifyBeforeEvaluation, notifyPropertyResolved, setLocale, setPropertyResolved, setPropertyResolved
-
Constructor Details
-
VariablesELContext
-
-
Method Details
-
addELResolver
Description copied from class:StandardELContextAdd a custom ELResolver to the context. The list of the custom ELResolvers will be accessed in the order they are added. A custom ELResolver added to the context cannot be removed.- Overrides:
addELResolverin classStandardELContext- Parameters:
cELResolver- The new ELResolver to be added to the context
-
getELResolver
Description copied from class:StandardELContextConstruct (if needed) and return a default ELResolver.Retrieves the
ELResolverassociated with this context. This is aCompositeELResoverconsists of an ordered list ofELResolvers.- A
BeanNameELResolverfor beans defined locally - Any custom
ELResolvers - An
ELResolversupporting the collection operations - A
StaticFieldELResolverfor resolving static fields - A
MapELResolverfor resolving Map properties - A
ResourceBundleELResolverfor resolving ResourceBundle properties - A
ListELResolverfor resolving List properties - An
ArrayELResolverfor resolving array properties - A
BeanELResolverfor resolving bean properties
- Overrides:
getELResolverin classStandardELContext- Returns:
- The ELResolver for this context.
- A
-