Interface | Description |
---|---|
ELContextListener |
The listener interface for receiving notification when an
ELContext is created. |
Class | Description |
---|---|
ArrayELResolver |
Defines property resolution behavior on arrays.
|
BeanELResolver |
Defines property resolution behavior on objects using the JavaBeans component architecture.
|
BeanNameELResolver |
An
ELResolver for resolving user or container managed beans. |
BeanNameResolver |
Resolves a bean by its known name.
|
CompositeELResolver |
Maintains an ordered composite list of child
ELResolver s. |
ELClass |
A runtime representation of a Class in the Jakarta Expression Language expressions.
|
ELContext |
Context information for expression parsing and evaluation.
|
ELContextEvent |
An event which indicates that an
ELContext has been created. |
ELManager |
Manages Jakarta Expression Language parsing and evaluation environment.
|
ELProcessor |
Provides an API for using Jakarta Expression Language in a stand-alone environment.
|
ELResolver |
Enables customization of variable, property, method call, and type conversion resolution behavior for Jakarta
Expression Language expression evaluation.
|
EvaluationListener |
The listener interface for receiving notification when a Jakarta Expression Language expression is evaluated.
|
Expression |
Base class for the expression subclasses
ValueExpression and MethodExpression , implementing
characteristics common to both. |
ExpressionFactory |
Provides an implementation for creating and evaluating Jakarta Expression Language expressions.
|
FunctionMapper |
The interface to a map between Jakarta Expression Language function names and methods.
|
ImportHandler |
Handles imports of class names and package names.
|
LambdaExpression |
Encapsulates a parameterized
ValueExpression . |
ListELResolver |
Defines property resolution behavior on instances of
List . |
MapELResolver |
Defines property resolution behavior on instances of
Map . |
MethodExpression |
An
Expression that refers to a method on an object. |
MethodInfo |
Holds information about a method that a
MethodExpression evaluated to. |
MethodReference |
Provides information about the method to which a method expression resolves.
|
ResourceBundleELResolver |
Defines property resolution behavior on instances of
ResourceBundle . |
StandardELContext |
A standard ELContext suitable for use in a stand alone environment.
|
StaticFieldELResolver |
An
ELResolver for resolving static fields, enum constants and static methods. |
TypeConverter |
A convenient class for writing an ELResolver to do custom type conversions.
|
ValueExpression |
An
Expression that can get or set a value. |
ValueReference |
This encapsulates a base model object and one of its properties.
|
VariableMapper |
The interface to a map between Jakarta Expression Language variables and the Jakarta Expression Language expressions
they are associated with.
|
Exception | Description |
---|---|
ELException |
Represents any of the exception conditions that can arise during expression evaluation.
|
MethodNotFoundException |
Thrown when a method could not be found while evaluating a
MethodExpression . |
PropertyNotFoundException |
Thrown when a property could not be found while evaluating a
ValueExpression or MethodExpression . |
PropertyNotWritableException |
Thrown when a property could not be written to while setting the value on a
ValueExpression . |