Uses of Class
jakarta.el.ELResolver
-
Packages that use ELResolver Package Description jakarta.el Provides the API for Jakarta Expression Language 5.0jakarta.enterprise.inject.spi The portable extension integration SPI.jakarta.faces.application jakarta.servlet.jsp jakarta.servlet.jsp.el -
-
Uses of ELResolver in jakarta.el
Subclasses of ELResolver in jakarta.el Modifier and Type Class Description class
ArrayELResolver
Defines property resolution behavior on arrays.class
BeanELResolver
Defines property resolution behavior on objects using the JavaBeans component architecture.class
BeanNameELResolver
AnELResolver
for resolving user or container managed beans.class
CompositeELResolver
Maintains an ordered composite list of childELResolver
s.class
ListELResolver
Defines property resolution behavior on instances ofList
.class
MapELResolver
Defines property resolution behavior on instances ofMap
.class
ResourceBundleELResolver
Defines property resolution behavior on instances ofResourceBundle
.class
StaticFieldELResolver
AnELResolver
for resolving static fields, enum constants and static methods.class
TypeConverter
A convenient class for writing an ELResolver to do custom type conversions.Methods in jakarta.el that return ELResolver Modifier and Type Method Description abstract ELResolver
ELContext. getELResolver()
Retrieves theELResolver
associated with this context.ELResolver
StandardELContext. getELResolver()
Construct (if needed) and return a default ELResolver.ELResolver
ExpressionFactory. getStreamELResolver()
Retrieves an ELResolver that implements the operations in collections.Methods in jakarta.el with parameters of type ELResolver Modifier and Type Method Description void
CompositeELResolver. add(ELResolver elResolver)
Adds the given resolver to the list of component resolvers.void
ELManager. addELResolver(ELResolver elResolver)
Add an user defined ELResolver to the list of ELResolvers.void
StandardELContext. addELResolver(ELResolver cELResolver)
Add a custom ELResolver to the context. -
Uses of ELResolver in jakarta.enterprise.inject.spi
Methods in jakarta.enterprise.inject.spi that return ELResolver Modifier and Type Method Description ELResolver
BeanManager. getELResolver()
Returns aELResolver
that resolves beans by EL name. -
Uses of ELResolver in jakarta.faces.application
Methods in jakarta.faces.application that return ELResolver Modifier and Type Method Description ELResolver
Application. getELResolver()
Return the singletonELResolver
instance to be used for all Jakarta Expression Language resolution.ELResolver
ApplicationWrapper. getELResolver()
The default behavior of this method is to callApplication.getELResolver()
on the wrappedApplication
object.Methods in jakarta.faces.application with parameters of type ELResolver Modifier and Type Method Description void
Application. addELResolver(ELResolver resolver)
Cause an the argumentresolver
to be added to the resolver chain as specified in section 5.3.2 "ELResolver" of the Jakarta Faces Specification Document.void
ApplicationWrapper. addELResolver(ELResolver resolver)
The default behavior of this method is to callApplication.addELResolver(jakarta.el.ELResolver)
on the wrappedApplication
object. -
Uses of ELResolver in jakarta.servlet.jsp
Methods in jakarta.servlet.jsp with parameters of type ELResolver Modifier and Type Method Description void
JspApplicationContext. addELResolver(ELResolver resolver)
Adds anELResolver
to affect the way EL variables and properties are resolved for EL expressions appearing in JSP pages and tag files. -
Uses of ELResolver in jakarta.servlet.jsp.el
Subclasses of ELResolver in jakarta.servlet.jsp.el Modifier and Type Class Description class
ImplicitObjectELResolver
Defines variable resolution behavior for the EL implicit objects defined in the JSP specification.class
ImportELResolver
Defines variable resolution behavior for Class imports and static imports.class
NotFoundELResolver
Defines variable resolution when all other resolvers fail.class
ScopedAttributeELResolver
Defines variable resolution behavior for scoped attributes.
-