A B C D E F G H I J L M N P R S T V 
All Classes All Packages

A

add(ELResolver) - Method in class jakarta.el.CompositeELResolver
Adds the given resolver to the list of component resolvers.
addBeanNameResolver(BeanNameResolver) - Method in class jakarta.el.ELManager
Register a BeanNameResolver.
addELResolver(ELResolver) - Method in class jakarta.el.ELManager
Add an user defined ELResolver to the list of ELResolvers.
addELResolver(ELResolver) - Method in class jakarta.el.StandardELContext
Add a custom ELResolver to the context.
addEvaluationListener(EvaluationListener) - Method in class jakarta.el.ELContext
Registers an evaluation listener to the ELContext.
addEvaluationListener(EvaluationListener) - Method in class jakarta.el.ELManager
Register an evaluation listener.
afterEvaluation(ELContext, String) - Method in class jakarta.el.EvaluationListener
Receives notification after a Jakarta Expression Language expression is evaluated
ArrayELResolver - Class in jakarta.el
Defines property resolution behavior on arrays.
ArrayELResolver() - Constructor for class jakarta.el.ArrayELResolver
Creates a new read/write ArrayELResolver.
ArrayELResolver(boolean) - Constructor for class jakarta.el.ArrayELResolver
Creates a new ArrayELResolver whose read-only status is determined by the given parameter.

B

BeanELResolver - Class in jakarta.el
Defines property resolution behavior on objects using the JavaBeans component architecture.
BeanELResolver() - Constructor for class jakarta.el.BeanELResolver
Creates a new read/write BeanELResolver.
BeanELResolver(boolean) - Constructor for class jakarta.el.BeanELResolver
Creates a new BeanELResolver whose read-only status is determined by the given parameter.
BeanNameELResolver - Class in jakarta.el
An ELResolver for resolving user or container managed beans.
BeanNameELResolver(BeanNameResolver) - Constructor for class jakarta.el.BeanNameELResolver
Constructor
BeanNameResolver - Class in jakarta.el
Resolves a bean by its known name.
BeanNameResolver() - Constructor for class jakarta.el.BeanNameResolver
 
beforeEvaluation(ELContext, String) - Method in class jakarta.el.EvaluationListener
Receives notification before a Jakarta Expression Language expression is evaluated

C

canCreateBean(String) - Method in class jakarta.el.BeanNameResolver
Allow creating a bean of the given name if it does not exist.
coerceToType(Object, Class<T>) - Method in class jakarta.el.ExpressionFactory
Coerces an object to a specific type according to the Jakarta Expression Language type conversion rules.
CompositeELResolver - Class in jakarta.el
Maintains an ordered composite list of child ELResolvers.
CompositeELResolver() - Constructor for class jakarta.el.CompositeELResolver
 
contextCreated(ELContextEvent) - Method in interface jakarta.el.ELContextListener
Invoked when a new ELContext has been created.
convertToType(ELContext, Object, Class<T>) - Method in class jakarta.el.CompositeELResolver
Converts an object to a specific type.
convertToType(ELContext, Object, Class<T>) - Method in class jakarta.el.ELResolver
Converts an object to a specific type.
convertToType(ELContext, Object, Class<T>) - Method in class jakarta.el.TypeConverter
Converts an object to a specific type.
convertToType(Object, Class<T>) - Method in class jakarta.el.ELContext
Converts an object to a specific type.
createMethodExpression(ELContext, String, Class<?>, Class<?>[]) - Method in class jakarta.el.ExpressionFactory
Parses an expression into a MethodExpression for later evaluation.
createValueExpression(ELContext, String, Class<?>) - Method in class jakarta.el.ExpressionFactory
Parses an expression into a ValueExpression for later evaluation.
createValueExpression(Object, Class<?>) - Method in class jakarta.el.ExpressionFactory
Creates a ValueExpression that wraps an object instance.

D

defineBean(String, Object) - Method in class jakarta.el.ELManager
Define a bean in the local bean repository
defineBean(String, Object) - Method in class jakarta.el.ELProcessor
Define a bean in a local bean repository, hiding other beans of the same name.
defineFunction(String, String, Method) - Method in class jakarta.el.ELProcessor
Define a Jakarta Expression Language function in the local function mapper.
defineFunction(String, String, String, String) - Method in class jakarta.el.ELProcessor
Define a Jakarta Expression Language function in the local function mapper.

E

ELClass - Class in jakarta.el
A runtime representation of a Class in the Jakarta Expression Language expressions.
ELClass(Class<?>) - Constructor for class jakarta.el.ELClass
Constructor
ELContext - Class in jakarta.el
Context information for expression parsing and evaluation.
ELContext() - Constructor for class jakarta.el.ELContext
 
ELContextEvent - Class in jakarta.el
An event which indicates that an ELContext has been created.
ELContextEvent(ELContext) - Constructor for class jakarta.el.ELContextEvent
Constructs an ELContextEvent object to indicate that an ELContext has been created.
ELContextListener - Interface in jakarta.el
The listener interface for receiving notification when an ELContext is created.
ELException - Exception in jakarta.el
Represents any of the exception conditions that can arise during expression evaluation.
ELException() - Constructor for exception jakarta.el.ELException
Creates an ELException with no detail message.
ELException(String) - Constructor for exception jakarta.el.ELException
Creates an ELException with the provided detail message.
ELException(String, Throwable) - Constructor for exception jakarta.el.ELException
Creates an ELException with the given detail message and root cause.
ELException(Throwable) - Constructor for exception jakarta.el.ELException
Creates an ELException with the given cause.
ELManager - Class in jakarta.el
Manages Jakarta Expression Language parsing and evaluation environment.
ELManager() - Constructor for class jakarta.el.ELManager
 
ELProcessor - Class in jakarta.el
Provides an API for using Jakarta Expression Language in a stand-alone environment.
ELProcessor() - Constructor for class jakarta.el.ELProcessor
 
ELResolver - Class in jakarta.el
Enables customization of variable, property, method call, and type conversion resolution behavior for Jakarta Expression Language expression evaluation.
ELResolver() - Constructor for class jakarta.el.ELResolver
 
enterLambdaScope(Map<String, Object>) - Method in class jakarta.el.ELContext
Installs a Lambda argument map, in preparation for the evaluation of a Lambda expression.
equals(Object) - Method in class jakarta.el.Expression
Determines whether the specified object is equal to this Expression.
equals(Object) - Method in class jakarta.el.MethodInfo
 
equals(Object) - Method in class jakarta.el.MethodReference
 
eval(String) - Method in class jakarta.el.ELProcessor
Evaluates an Jakarta Expression Language expression.
EvaluationListener - Class in jakarta.el
The listener interface for receiving notification when a Jakarta Expression Language expression is evaluated.
EvaluationListener() - Constructor for class jakarta.el.EvaluationListener
 
exitLambdaScope() - Method in class jakarta.el.ELContext
Exits the Lambda expression evaluation.
Expression - Class in jakarta.el
Base class for the expression subclasses ValueExpression and MethodExpression, implementing characteristics common to both.
Expression() - Constructor for class jakarta.el.Expression
 
ExpressionFactory - Class in jakarta.el
Provides an implementation for creating and evaluating Jakarta Expression Language expressions.
ExpressionFactory() - Constructor for class jakarta.el.ExpressionFactory
 

F

FunctionMapper - Class in jakarta.el
The interface to a map between Jakarta Expression Language function names and methods.
FunctionMapper() - Constructor for class jakarta.el.FunctionMapper
 

G

getAnnotations() - Method in class jakarta.el.MethodReference
Obtain the annotations on the method to which the associated expression resolves.
getBase() - Method in class jakarta.el.MethodReference
Obtain the base object on which the method will be invoked.
getBase() - Method in class jakarta.el.ValueReference
 
getBean(String) - Method in class jakarta.el.BeanNameResolver
Returns the bean known by its name.
getCommonPropertyType(ELContext, Object) - Method in class jakarta.el.ArrayELResolver
If the base object is a Java language array, returns the most general type that this resolver accepts for the property argument.
getCommonPropertyType(ELContext, Object) - Method in class jakarta.el.BeanELResolver
If the base object is not null, returns the most general type that this resolver accepts for the property argument.
getCommonPropertyType(ELContext, Object) - Method in class jakarta.el.BeanNameELResolver
Always returns String.class, since a bean name is a String.
getCommonPropertyType(ELContext, Object) - Method in class jakarta.el.CompositeELResolver
Returns the most general type that this resolver accepts for the property argument, given a base object.
getCommonPropertyType(ELContext, Object) - Method in class jakarta.el.ELResolver
Returns the most general type that this resolver accepts for the property argument, given a base object.
getCommonPropertyType(ELContext, Object) - Method in class jakarta.el.ListELResolver
If the base object is a list, returns the most general type that this resolver accepts for the property argument.
getCommonPropertyType(ELContext, Object) - Method in class jakarta.el.MapELResolver
If the base object is a map, returns the most general type that this resolver accepts for the property argument.
getCommonPropertyType(ELContext, Object) - Method in class jakarta.el.ResourceBundleELResolver
If the base object is a ResourceBundle, returns the most general type that this resolver accepts for the property argument.
getCommonPropertyType(ELContext, Object) - Method in class jakarta.el.StaticFieldELResolver
Returns the type of the property.
getCommonPropertyType(ELContext, Object) - Method in class jakarta.el.TypeConverter
 
getContext(Class<?>) - Method in class jakarta.el.ELContext
Returns the context object associated with the given key.
getContext(Class<?>) - Method in class jakarta.el.StandardELContext
 
getELContext() - Method in class jakarta.el.ELContextEvent
Returns the ELContext that was created.
getELContext() - Method in class jakarta.el.ELManager
Return the ELContext used for parsing and evaluating Jakarta Expression Language expressions.
getELManager() - Method in class jakarta.el.ELProcessor
Return the ELManager used for Jakarta Expression Language processing.
getELResolver() - Method in class jakarta.el.ELContext
Retrieves the ELResolver associated with this context.
getELResolver() - Method in class jakarta.el.StandardELContext
Construct (if needed) and return a default ELResolver.
getEvaluatedParameters() - Method in class jakarta.el.MethodReference
Obtain the evaluated parameter values that will be passed to the method to which the associated expression resolves.
getEvaluationListeners() - Method in class jakarta.el.ELContext
Returns the list of registered evaluation listeners.
getExpectedType() - Method in class jakarta.el.ValueExpression
Returns the type the result of the expression will be coerced to after evaluation.
getExpressionFactory() - Static method in class jakarta.el.ELManager
Return the ExpressionFactory instance used for Jakarta Expression Language evaluations.
getExpressionString() - Method in class jakarta.el.Expression
Returns the original String used to create this Expression, unmodified.
getFeatureDescriptors(ELContext, Object) - Method in class jakarta.el.ArrayELResolver
Deprecated, for removal: This API element is subject to removal in a future version.
This method will be removed without replacement in EL 6.0
getFeatureDescriptors(ELContext, Object) - Method in class jakarta.el.BeanELResolver
Deprecated, for removal: This API element is subject to removal in a future version.
This method will be removed without replacement in EL 6.0
getFeatureDescriptors(ELContext, Object) - Method in class jakarta.el.BeanNameELResolver
Deprecated, for removal: This API element is subject to removal in a future version.
This method will be removed without replacement in EL 6.0
getFeatureDescriptors(ELContext, Object) - Method in class jakarta.el.CompositeELResolver
Deprecated, for removal: This API element is subject to removal in a future version.
This method will be removed with replacement in EL 6.0
getFeatureDescriptors(ELContext, Object) - Method in class jakarta.el.ELResolver
Deprecated, for removal: This API element is subject to removal in a future version.
This method will be removed without replacement in EL 6.0
getFeatureDescriptors(ELContext, Object) - Method in class jakarta.el.ListELResolver
Deprecated, for removal: This API element is subject to removal in a future version.
This method will be removed without replacement in EL 6.0
getFeatureDescriptors(ELContext, Object) - Method in class jakarta.el.MapELResolver
Deprecated, for removal: This API element is subject to removal in a future version.
This method will be removed without replacement in EL 6.0
getFeatureDescriptors(ELContext, Object) - Method in class jakarta.el.ResourceBundleELResolver
Deprecated, for removal: This API element is subject to removal in a future version.
This method will be removed without replacement in EL 6.0
getFeatureDescriptors(ELContext, Object) - Method in class jakarta.el.StaticFieldELResolver
Deprecated, for removal: This API element is subject to removal in a future version.
This method will be removed without replacement in EL 6.0
getFeatureDescriptors(ELContext, Object) - Method in class jakarta.el.TypeConverter
Deprecated, for removal: This API element is subject to removal in a future version.
getFunctionMapper() - Method in class jakarta.el.ELContext
Retrieves the FunctionMapper associated with this ELContext.
getFunctionMapper() - Method in class jakarta.el.StandardELContext
Construct (if needed) and return a default FunctionMapper.
getImportHandler() - Method in class jakarta.el.ELContext
Retrieves the ImportHandler associated with this ELContext.
getInitFunctionMap() - Method in class jakarta.el.ExpressionFactory
Retrieve a function map containing a pre-configured function mapping.
getKlass() - Method in class jakarta.el.ELClass
Returns the Class instance
getLambdaArgument(String) - Method in class jakarta.el.ELContext
Retrieves the Lambda argument associated with a formal parameter.
getLocale() - Method in class jakarta.el.ELContext
Get the Locale stored by a previous invocation to ELContext.setLocale(java.util.Locale).
getMethodInfo() - Method in class jakarta.el.MethodReference
Obtain the MethodInfo for the MethodExpression for which this MethodReference has been generated.
getMethodInfo(ELContext) - Method in class jakarta.el.MethodExpression
Evaluates the expression relative to the provided context, and returns information about the actual referenced method.
getMethodReference(ELContext) - Method in class jakarta.el.MethodExpression
Obtain the MethodReference for the method to which this method expression resolves.
getName() - Method in class jakarta.el.MethodInfo
Returns the name of the method
getParamTypes() - Method in class jakarta.el.MethodInfo
Returns the parameter types of the method
getProperty() - Method in class jakarta.el.ValueReference
 
getReturnType() - Method in class jakarta.el.MethodInfo
Returns the return type of the method
getStreamELResolver() - Method in class jakarta.el.ExpressionFactory
Retrieves an ELResolver that implements the operations in collections.
getType(ELContext) - Method in class jakarta.el.ValueExpression
Evaluates the expression relative to the provided context, and returns the most general type that is acceptable for an object to be passed as the value parameter in a future call to the ValueExpression.setValue(jakarta.el.ELContext, java.lang.Object) method.
getType(ELContext, Object, Object) - Method in class jakarta.el.ArrayELResolver
If the base object is an array, returns the most general acceptable type for a value in this array.
getType(ELContext, Object, Object) - Method in class jakarta.el.BeanELResolver
If the base object is not null, returns the most general acceptable type that can be set on this bean property.
getType(ELContext, Object, Object) - Method in class jakarta.el.BeanNameELResolver
If the base is null and the property is a name resolvable by the BeanNameResolver, return the type of the bean.
getType(ELContext, Object, Object) - Method in class jakarta.el.CompositeELResolver
For a given base and property, attempts to identify the most general type that is acceptable for an object to be passed as the value parameter in a future call to the CompositeELResolver.setValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object) method.
getType(ELContext, Object, Object) - Method in class jakarta.el.ELResolver
For a given base and property, attempts to identify the most general type that is acceptable for an object to be passed as the value parameter in a future call to the ELResolver.setValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object) method.
getType(ELContext, Object, Object) - Method in class jakarta.el.ListELResolver
If the base object is a list, returns the most general acceptable type for a value in this list.
getType(ELContext, Object, Object) - Method in class jakarta.el.MapELResolver
If the base object is a map, returns the most general acceptable type for a value in this map.
getType(ELContext, Object, Object) - Method in class jakarta.el.ResourceBundleELResolver
If the base object is an instance of ResourceBundle, return null, since the resolver is read only.
getType(ELContext, Object, Object) - Method in class jakarta.el.StaticFieldELResolver
Returns the type of a static field.
getType(ELContext, Object, Object) - Method in class jakarta.el.TypeConverter
 
getValue(ELContext) - Method in class jakarta.el.ValueExpression
Evaluates the expression relative to the provided context, and returns the resulting value.
getValue(ELContext, Object, Object) - Method in class jakarta.el.ArrayELResolver
If the base object is a Java language array, returns the value at the given index.
getValue(ELContext, Object, Object) - Method in class jakarta.el.BeanELResolver
If the base object is not null, returns the current value of the given property on this bean.
getValue(ELContext, Object, Object) - Method in class jakarta.el.BeanNameELResolver
If the base object is null and the property is a name that is resolvable by the BeanNameResolver, returns the value resolved by the BeanNameResolver.
getValue(ELContext, Object, Object) - Method in class jakarta.el.CompositeELResolver
Attempts to resolve the given property object on the given base object by querying all component resolvers.
getValue(ELContext, Object, Object) - Method in class jakarta.el.ELResolver
Attempts to resolve the given property object on the given base object.
getValue(ELContext, Object, Object) - Method in class jakarta.el.ListELResolver
If the base object is a list, returns the value at the given index.
getValue(ELContext, Object, Object) - Method in class jakarta.el.MapELResolver
If the base object is a map, returns the value associated with the given key, as specified by the property argument.
getValue(ELContext, Object, Object) - Method in class jakarta.el.ResourceBundleELResolver
If the base object is an instance of ResourceBundle, the provided property will first be coerced to a String.
getValue(ELContext, Object, Object) - Method in class jakarta.el.StaticFieldELResolver
Returns the value of a static field.
getValue(ELContext, Object, Object) - Method in class jakarta.el.TypeConverter
 
getValue(String, Class<T>) - Method in class jakarta.el.ELProcessor
Evaluates an Jakarta Expression Language expression, and coerces the result to the specified type.
getValueReference(ELContext) - Method in class jakarta.el.ValueExpression
Returns a ValueReference for this expression instance.
getVariableMapper() - Method in class jakarta.el.ELContext
Retrieves the VariableMapper associated with this ELContext.
getVariableMapper() - Method in class jakarta.el.StandardELContext
Construct (if needed) and return a default VariableMapper() {

H

hashCode() - Method in class jakarta.el.Expression
Returns the hash code for this Expression.
hashCode() - Method in class jakarta.el.MethodInfo
 
hashCode() - Method in class jakarta.el.MethodReference
 

I

importClass(String) - Method in class jakarta.el.ELManager
Import a class.
importClass(String) - Method in class jakarta.el.ImportHandler
Import a class.
ImportHandler - Class in jakarta.el
Handles imports of class names and package names.
ImportHandler() - Constructor for class jakarta.el.ImportHandler
 
importPackage(String) - Method in class jakarta.el.ELManager
Import a package.
importPackage(String) - Method in class jakarta.el.ImportHandler
Import all the classes in a package.
importStatic(String) - Method in class jakarta.el.ELManager
Import a static field or method.
importStatic(String) - Method in class jakarta.el.ImportHandler
Import a static field or method.
invoke(ELContext, Object...) - Method in class jakarta.el.LambdaExpression
Invoke the encapsulated Lambda expression.
invoke(ELContext, Object[]) - Method in class jakarta.el.MethodExpression
If a String literal is specified as the expression, returns the String literal coerced to the expected return type of the method signature.
invoke(ELContext, Object, Object, Class<?>[], Object[]) - Method in class jakarta.el.BeanELResolver
If the base object is not null, invoke the method, with the given parameters on this bean.
invoke(ELContext, Object, Object, Class<?>[], Object[]) - Method in class jakarta.el.CompositeELResolver
Attempts to resolve and invoke the given method on the given base object by querying all component resolvers.
invoke(ELContext, Object, Object, Class<?>[], Object[]) - Method in class jakarta.el.ELResolver
Attempts to resolve and invoke the given method on the given base object.
invoke(ELContext, Object, Object, Class<?>[], Object[]) - Method in class jakarta.el.StaticFieldELResolver
Invokes a public static method or the constructor for a class.
invoke(Object...) - Method in class jakarta.el.LambdaExpression
Invoke the encapsulated Lambda expression.
isLambdaArgument(String) - Method in class jakarta.el.ELContext
Inquires if the name is a LambdaArgument
isLiteralText() - Method in class jakarta.el.Expression
Returns whether this expression was created from only literal text.
isNameResolved(String) - Method in class jakarta.el.BeanNameResolver
Returns whether the given name is resolved by the BeanNameResolver
isParametersProvided() - Method in class jakarta.el.MethodExpression
Return whether this MethodExpression was created with parameters.
isPropertyResolved() - Method in class jakarta.el.ELContext
Returns whether an ELResolver has successfully resolved a given (base, property) pair.
isReadOnly(ELContext) - Method in class jakarta.el.ValueExpression
Evaluates the expression relative to the provided context, and returns true if a call to ValueExpression.setValue(jakarta.el.ELContext, java.lang.Object) will always fail.
isReadOnly(ELContext, Object, Object) - Method in class jakarta.el.ArrayELResolver
If the base object is a Java language array, returns whether a call to ArrayELResolver.setValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object) will always fail.
isReadOnly(ELContext, Object, Object) - Method in class jakarta.el.BeanELResolver
If the base object is not null, returns whether a call to BeanELResolver.setValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object) will always fail.
isReadOnly(ELContext, Object, Object) - Method in class jakarta.el.BeanNameELResolver
If the base is null and the property is a name resolvable by the BeanNameResolver, attempts to determine if the bean is writable.
isReadOnly(ELContext, Object, Object) - Method in class jakarta.el.CompositeELResolver
For a given base and property, attempts to determine whether a call to CompositeELResolver.setValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object) will always fail.
isReadOnly(ELContext, Object, Object) - Method in class jakarta.el.ELResolver
For a given base and property, attempts to determine whether a call to ELResolver.setValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object) will always fail.
isReadOnly(ELContext, Object, Object) - Method in class jakarta.el.ListELResolver
If the base object is a list, returns whether a call to ListELResolver.setValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object) will always fail.
isReadOnly(ELContext, Object, Object) - Method in class jakarta.el.MapELResolver
If the base object is a map, returns whether a call to MapELResolver.setValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object) will always fail.
isReadOnly(ELContext, Object, Object) - Method in class jakarta.el.ResourceBundleELResolver
If the base object is not null and an instanceof ResourceBundle, return true.
isReadOnly(ELContext, Object, Object) - Method in class jakarta.el.StaticFieldELResolver
Inquires whether the static field is writable.
isReadOnly(ELContext, Object, Object) - Method in class jakarta.el.TypeConverter
 
isReadOnly(String) - Method in class jakarta.el.BeanNameResolver
Indicates if the bean of the given name is read-only or writable

J

jakarta.el - module jakarta.el
 
jakarta.el - package jakarta.el
Provides the API for Jakarta Expression Language 5.0

L

LambdaExpression - Class in jakarta.el
Encapsulates a parameterized ValueExpression.
LambdaExpression(List<String>, ValueExpression) - Constructor for class jakarta.el.LambdaExpression
Creates a new LambdaExpression.
ListELResolver - Class in jakarta.el
Defines property resolution behavior on instances of List.
ListELResolver() - Constructor for class jakarta.el.ListELResolver
Creates a new read/write ListELResolver.
ListELResolver(boolean) - Constructor for class jakarta.el.ListELResolver
Creates a new ListELResolver whose read-only status is determined by the given parameter.

M

MapELResolver - Class in jakarta.el
Defines property resolution behavior on instances of Map.
MapELResolver() - Constructor for class jakarta.el.MapELResolver
Creates a new read/write MapELResolver.
MapELResolver(boolean) - Constructor for class jakarta.el.MapELResolver
Creates a new MapELResolver whose read-only status is determined by the given parameter.
mapFunction(String, String, Method) - Method in class jakarta.el.ELManager
Maps a static method to Jakarta Expression Language function.
mapFunction(String, String, Method) - Method in class jakarta.el.FunctionMapper
Adds a static method that can be used as a function.
MethodExpression - Class in jakarta.el
An Expression that refers to a method on an object.
MethodExpression() - Constructor for class jakarta.el.MethodExpression
 
MethodInfo - Class in jakarta.el
Holds information about a method that a MethodExpression evaluated to.
MethodInfo(String, Class<?>, Class<?>[]) - Constructor for class jakarta.el.MethodInfo
Creates a new instance of MethodInfo with the given information.
MethodNotFoundException - Exception in jakarta.el
Thrown when a method could not be found while evaluating a MethodExpression.
MethodNotFoundException() - Constructor for exception jakarta.el.MethodNotFoundException
Creates a MethodNotFoundException with no detail message.
MethodNotFoundException(String) - Constructor for exception jakarta.el.MethodNotFoundException
Creates a MethodNotFoundException with the provided detail message.
MethodNotFoundException(String, Throwable) - Constructor for exception jakarta.el.MethodNotFoundException
Creates a MethodNotFoundException with the given detail message and root cause.
MethodNotFoundException(Throwable) - Constructor for exception jakarta.el.MethodNotFoundException
Creates a MethodNotFoundException with the given root cause.
MethodReference - Class in jakarta.el
Provides information about the method to which a method expression resolves.
MethodReference(Object, MethodInfo, Annotation[], Object[]) - Constructor for class jakarta.el.MethodReference
 

N

newInstance() - Static method in class jakarta.el.ExpressionFactory
Creates a new instance of a ExpressionFactory.
newInstance(Properties) - Static method in class jakarta.el.ExpressionFactory
Create a new instance of a ExpressionFactory, with optional properties.
notifyAfterEvaluation(String) - Method in class jakarta.el.ELContext
Notifies the listeners after an Jakarta Expression Language expression is evaluated
notifyBeforeEvaluation(String) - Method in class jakarta.el.ELContext
Notifies the listeners before an Jakarta Expression Language expression is evaluated
notifyPropertyResolved(Object, Object) - Method in class jakarta.el.ELContext
Notifies the listeners when the (base, property) pair is resolved

P

PropertyNotFoundException - Exception in jakarta.el
Thrown when a property could not be found while evaluating a ValueExpression or MethodExpression.
PropertyNotFoundException() - Constructor for exception jakarta.el.PropertyNotFoundException
Creates a PropertyNotFoundException with no detail message.
PropertyNotFoundException(String) - Constructor for exception jakarta.el.PropertyNotFoundException
Creates a PropertyNotFoundException with the provided detail message.
PropertyNotFoundException(String, Throwable) - Constructor for exception jakarta.el.PropertyNotFoundException
Creates a PropertyNotFoundException with the given detail message and root cause.
PropertyNotFoundException(Throwable) - Constructor for exception jakarta.el.PropertyNotFoundException
Creates a PropertyNotFoundException with the given root cause.
PropertyNotWritableException - Exception in jakarta.el
Thrown when a property could not be written to while setting the value on a ValueExpression.
PropertyNotWritableException() - Constructor for exception jakarta.el.PropertyNotWritableException
Creates a PropertyNotWritableException with no detail message.
PropertyNotWritableException(String) - Constructor for exception jakarta.el.PropertyNotWritableException
Creates a PropertyNotWritableException with the provided detail message.
PropertyNotWritableException(String, Throwable) - Constructor for exception jakarta.el.PropertyNotWritableException
Creates a PropertyNotWritableException with the given detail message and root cause.
PropertyNotWritableException(Throwable) - Constructor for exception jakarta.el.PropertyNotWritableException
Creates a PropertyNotWritableException with the given root cause.
propertyResolved(ELContext, Object, Object) - Method in class jakarta.el.EvaluationListener
Receives notification when the (base, property) pair is resolved
putContext(Class<?>, Object) - Method in class jakarta.el.ELContext
Associates a context object with this ELContext.
putContext(Class<?>, Object) - Method in class jakarta.el.StandardELContext
 

R

RESOLVABLE_AT_DESIGN_TIME - Static variable in class jakarta.el.ELResolver
The attribute name of the named attribute in the FeatureDescriptor that specifies whether the variable or property can be resolved at runtime.
resolveClass(String) - Method in class jakarta.el.ImportHandler
Resolve a class name.
resolveFunction(String, String) - Method in class jakarta.el.FunctionMapper
Resolves the specified prefix and local name into a java.lang.Method.
resolveStatic(String) - Method in class jakarta.el.ImportHandler
Resolve a static field or method name.
resolveVariable(String) - Method in class jakarta.el.VariableMapper
 
ResourceBundleELResolver - Class in jakarta.el
Defines property resolution behavior on instances of ResourceBundle.
ResourceBundleELResolver() - Constructor for class jakarta.el.ResourceBundleELResolver
 

S

setBeanValue(String, Object) - Method in class jakarta.el.BeanNameResolver
Sets a value to a bean of the given name.
setELContext(ELContext) - Method in class jakarta.el.ELManager
Set the ELContext used for parsing and evaluating Jakarta Expression Language expressions.
setELContext(ELContext) - Method in class jakarta.el.LambdaExpression
Set the ELContext to use in evaluating the LambdaExpression.
setLocale(Locale) - Method in class jakarta.el.ELContext
Sets the Locale for this instance.
setPropertyResolved(boolean) - Method in class jakarta.el.ELContext
Called to indicate that a ELResolver has successfully resolved a given (base, property) pair.
setPropertyResolved(Object, Object) - Method in class jakarta.el.ELContext
Called to indicate that a ELResolver has successfully resolved a given (base, property) pair and to notify the EvaluationListeners.
setValue(ELContext, Object) - Method in class jakarta.el.ValueExpression
Evaluates the expression relative to the provided context, and sets the result to the provided value.
setValue(ELContext, Object, Object, Object) - Method in class jakarta.el.ArrayELResolver
If the base object is a Java language array, attempts to set the value at the given index with the given value.
setValue(ELContext, Object, Object, Object) - Method in class jakarta.el.BeanELResolver
If the base object is not null, attempts to set the value of the given property on this bean.
setValue(ELContext, Object, Object, Object) - Method in class jakarta.el.BeanNameELResolver
If the base is null and the property is a name that is resolvable by the BeanNameResolver, the bean in the BeanNameResolver is set to the given value.
setValue(ELContext, Object, Object, Object) - Method in class jakarta.el.CompositeELResolver
Attempts to set the value of the given property object on the given base object.
setValue(ELContext, Object, Object, Object) - Method in class jakarta.el.ELResolver
Attempts to set the value of the given property object on the given base object.
setValue(ELContext, Object, Object, Object) - Method in class jakarta.el.ListELResolver
If the base object is a list, attempts to set the value at the given index with the given value.
setValue(ELContext, Object, Object, Object) - Method in class jakarta.el.MapELResolver
If the base object is a map, attempts to set the value associated with the given key, as specified by the property argument.
setValue(ELContext, Object, Object, Object) - Method in class jakarta.el.ResourceBundleELResolver
If the base object is a ResourceBundle, throw a PropertyNotWritableException.
setValue(ELContext, Object, Object, Object) - Method in class jakarta.el.StaticFieldELResolver
Attempts to write to a static field.
setValue(ELContext, Object, Object, Object) - Method in class jakarta.el.TypeConverter
 
setValue(String, Object) - Method in class jakarta.el.ELProcessor
Sets an expression with a new value.
setVariable(String, ValueExpression) - Method in class jakarta.el.ELManager
Assign a ValueExpression to a Jakarta Expression Language variable, replacing any previous assignment to the same variable.
setVariable(String, ValueExpression) - Method in class jakarta.el.VariableMapper
Assign a ValueExpression to an Jakarta Expression Language variable, replacing any previously assignment to the same variable.
setVariable(String, String) - Method in class jakarta.el.ELProcessor
Assign a Jakarta Expression Language expression to a Jakarta Expression Language variable.
StandardELContext - Class in jakarta.el
A standard ELContext suitable for use in a stand alone environment.
StandardELContext(ELContext) - Constructor for class jakarta.el.StandardELContext
Construct a StandardELContext from another ELContext.
StandardELContext(ExpressionFactory) - Constructor for class jakarta.el.StandardELContext
Construct a default ELContext for a stand-alone environment.
StaticFieldELResolver - Class in jakarta.el
An ELResolver for resolving static fields, enum constants and static methods.
StaticFieldELResolver() - Constructor for class jakarta.el.StaticFieldELResolver
 

T

TYPE - Static variable in class jakarta.el.ELResolver
The attribute name of the named attribute in the FeatureDescriptor that specifies the runtime type of the variable or property.
TypeConverter - Class in jakarta.el
A convenient class for writing an ELResolver to do custom type conversions.
TypeConverter() - Constructor for class jakarta.el.TypeConverter
 

V

ValueExpression - Class in jakarta.el
An Expression that can get or set a value.
ValueExpression() - Constructor for class jakarta.el.ValueExpression
 
ValueReference - Class in jakarta.el
This encapsulates a base model object and one of its properties.
ValueReference(Object, Object) - Constructor for class jakarta.el.ValueReference
 
VariableMapper - Class in jakarta.el
The interface to a map between Jakarta Expression Language variables and the Jakarta Expression Language expressions they are associated with.
VariableMapper() - Constructor for class jakarta.el.VariableMapper
 
A B C D E F G H I J L M N P R S T V 
All Classes All Packages