Expression Language 2.2 API 1.0.2.Final
A B C E F G H I J L M N O P R S T V 

A

add(ELResolver) - Method in class javax.el.CompositeELResolver
Adds the given resolver to the list of component resolvers.
addCacheEntry(ClassLoader, String, String) - Static method in class org.jboss.el.cache.FactoryFinderCache
Called by the container at deployment time to set the name of a given factory, to remove the need for the implementation to look it up on every call.
ArrayELResolver - Class in javax.el
Defines property resolution behavior on arrays.
ArrayELResolver() - Constructor for class javax.el.ArrayELResolver
Creates a new read/write ArrayELResolver.
ArrayELResolver(boolean) - Constructor for class javax.el.ArrayELResolver
Creates a new ArrayELResolver whose read-only status is determined by the given parameter.

B

BeanELResolver - Class in javax.el
Defines property resolution behavior on objects using the JavaBeans component architecture.
BeanELResolver() - Constructor for class javax.el.BeanELResolver
Creates a new read/write BeanELResolver.
BeanELResolver(boolean) - Constructor for class javax.el.BeanELResolver
Creates a new BeanELResolver whose read-only status is determined by the given parameter.
BeanELResolver.BeanProperties - Class in javax.el
 
BeanELResolver.BeanProperties(Class<?>) - Constructor for class javax.el.BeanELResolver.BeanProperties
 
BeanELResolver.BeanProperty - Class in javax.el
 
BeanELResolver.BeanProperty(Class<?>, PropertyDescriptor) - Constructor for class javax.el.BeanELResolver.BeanProperty
 

C

clearClassLoader(ClassLoader) - Static method in class org.jboss.el.cache.FactoryFinderCache
This should be called by the container on undeploy to remove all references to the given class loader from the cache.
coerceToType(Object, Class<?>) - Method in class javax.el.ExpressionFactory
Coerces an object to a specific type according to the EL type conversion rules.
CompositeELResolver - Class in javax.el
Maintains an ordered composite list of child ELResolvers.
CompositeELResolver() - Constructor for class javax.el.CompositeELResolver
 
contextCreated(ELContextEvent) - Method in interface javax.el.ELContextListener
Invoked when a new ELContext has been created.
createMethodExpression(ELContext, String, Class<?>, Class<?>[]) - Method in class javax.el.ExpressionFactory
Parses an expression into a MethodExpression for later evaluation.
createValueExpression(ELContext, String, Class<?>) - Method in class javax.el.ExpressionFactory
Parses an expression into a ValueExpression for later evaluation.
createValueExpression(Object, Class<?>) - Method in class javax.el.ExpressionFactory
Creates a ValueExpression that wraps an object instance.

E

ELContext - Class in javax.el
Context information for expression evaluation.
ELContext() - Constructor for class javax.el.ELContext
 
ELContextEvent - Class in javax.el
An event which indicates that an ELContext has been created.
ELContextEvent(ELContext) - Constructor for class javax.el.ELContextEvent
Constructs an ELContextEvent object to indicate that an ELContext has been created.
ELContextListener - Interface in javax.el
The listener interface for receiving notification when an ELContext is created.
ELException - Exception in javax.el
Represents any of the exception conditions that can arise during expression evaluation.
ELException() - Constructor for exception javax.el.ELException
Creates an ELException with no detail message.
ELException(String) - Constructor for exception javax.el.ELException
Creates an ELException with the provided detail message.
ELException(Throwable) - Constructor for exception javax.el.ELException
Creates an ELException with the given cause.
ELException(String, Throwable) - Constructor for exception javax.el.ELException
Creates an ELException with the given detail message and root cause.
ELResolver - Class in javax.el
Enables customization of variable, property and method call resolution behavior for EL expression evaluation.
ELResolver() - Constructor for class javax.el.ELResolver
 
equals(Object) - Method in class javax.el.Expression
Determines whether the specified object is equal to this Expression.
Expression - Class in javax.el
Base class for the expression subclasses ValueExpression and MethodExpression, implementing characterstics common to both.
Expression() - Constructor for class javax.el.Expression
 
ExpressionFactory - Class in javax.el
 
ExpressionFactory() - Constructor for class javax.el.ExpressionFactory
 

F

FactoryFinderCache - Class in org.jboss.el.cache
 
FactoryFinderCache() - Constructor for class org.jboss.el.cache.FactoryFinderCache
 
FunctionMapper - Class in javax.el
The interface to a map between EL function names and methods.
FunctionMapper() - Constructor for class javax.el.FunctionMapper
 

G

getBase() - Method in class javax.el.ValueReference
 
getBeanProperty(String) - Method in class javax.el.BeanELResolver.BeanProperties
 
getCommonPropertyType(ELContext, Object) - Method in class javax.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 javax.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 javax.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 javax.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 javax.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 javax.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 javax.el.ResourceBundleELResolver
If the base object is a ResourceBundle, returns the most general type that this resolver accepts for the property argument.
getContext(Class) - Method in class javax.el.ELContext
Returns the context object associated with the given key.
getELContext() - Method in class javax.el.ELContextEvent
Returns the ELContext that was created.
getELResolver() - Method in class javax.el.ELContext
Retrieves the ELResolver associated with this context.
getExpectedType() - Method in class javax.el.ValueExpression
Returns the type the result of the expression will be coerced to after evaluation.
getExpressionString() - Method in class javax.el.Expression
Returns the original String used to create this Expression, unmodified.
getFeatureDescriptors(ELContext, Object) - Method in class javax.el.ArrayELResolver
Always returns null, since there is no reason to iterate through set set of all integers.
getFeatureDescriptors(ELContext, Object) - Method in class javax.el.BeanELResolver
If the base object is not null, returns an Iterator containing the set of JavaBeans properties available on the given object.
getFeatureDescriptors(ELContext, Object) - Method in class javax.el.CompositeELResolver
Returns information about the set of variables or properties that can be resolved for the given base object.
getFeatureDescriptors(ELContext, Object) - Method in class javax.el.ELResolver
Returns information about the set of variables or properties that can be resolved for the given base object.
getFeatureDescriptors(ELContext, Object) - Method in class javax.el.ListELResolver
Always returns null, since there is no reason to iterate through set set of all integers.
getFeatureDescriptors(ELContext, Object) - Method in class javax.el.MapELResolver
If the base object is a map, returns an Iterator containing the set of keys available in the Map.
getFeatureDescriptors(ELContext, Object) - Method in class javax.el.ResourceBundleELResolver
If the base object is a ResourceBundle, returns an Iterator containing the set of keys available in the ResourceBundle.
getFunctionMapper() - Method in class javax.el.ELContext
Retrieves the FunctionMapper associated with this ELContext.
getLocale() - Method in class javax.el.ELContext
Get the Locale stored by a previous invocation to ELContext.setLocale(java.util.Locale).
getMethodInfo(ELContext) - Method in class javax.el.MethodExpression
Evaluates the expression relative to the provided context, and returns information about the actual referenced method.
getName() - Method in class javax.el.MethodInfo
Returns the name of the method
getParamTypes() - Method in class javax.el.MethodInfo
Returns the parameter types of the method
getProperty() - Method in class javax.el.ValueReference
 
getPropertyType() - Method in class javax.el.BeanELResolver.BeanProperty
 
getReadMethod() - Method in class javax.el.BeanELResolver.BeanProperty
 
getReturnType() - Method in class javax.el.MethodInfo
Returns the return type of the method
getType(ELContext, Object, Object) - Method in class javax.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 javax.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 javax.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(javax.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object) method.
getType(ELContext, Object, Object) - Method in class javax.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(javax.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object) method.
getType(ELContext, Object, Object) - Method in class javax.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 javax.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 javax.el.ResourceBundleELResolver
If the base object is an instance of ResourceBundle, return null, since the resolver is read only.
getType(ELContext) - Method in class javax.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(javax.el.ELContext, java.lang.Object) method.
getValue(ELContext, Object, Object) - Method in class javax.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 javax.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 javax.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 javax.el.ELResolver
Attempts to resolve the given property object on the given base object.
getValue(ELContext, Object, Object) - Method in class javax.el.ListELResolver
If the base object is a list, returns the value at the given index.
getValue(ELContext, Object, Object) - Method in class javax.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 javax.el.ResourceBundleELResolver
If the base object is an instance of ResourceBundle, the provided property will first be coerced to a String.
getValue(ELContext) - Method in class javax.el.ValueExpression
Evaluates the expression relative to the provided context, and returns the resulting value.
getValueReference(ELContext) - Method in class javax.el.ValueExpression
Returns a ValueReference for this expression instance.
getVariableMapper() - Method in class javax.el.ELContext
Retrieves the VariableMapper associated with this ELContext.
getWriteMethod() - Method in class javax.el.BeanELResolver.BeanProperty
 

H

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

I

invoke(ELContext, Object, Object, Class<?>[], Object[]) - Method in class javax.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 javax.el.CompositeELResolver
Attemps 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 javax.el.ELResolver
Attemps to resolve and invoke the given method on the given base object.
invoke(ELContext, Object[]) - Method in class javax.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.
isLiteralText() - Method in class javax.el.Expression
Returns whether this expression was created from only literal text.
isParmetersProvided() - Method in class javax.el.MethodExpression
Return whether this MethodExpression was created with parameters.
isPropertyResolved() - Method in class javax.el.ELContext
Returns whether an ELResolver has successfully resolved a given (base, property) pair.
isReadOnly(ELContext, Object, Object) - Method in class javax.el.ArrayELResolver
If the base object is a Java language array, returns whether a call to ArrayELResolver.setValue(javax.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object) will always fail.
isReadOnly() - Method in class javax.el.BeanELResolver.BeanProperty
 
isReadOnly(ELContext, Object, Object) - Method in class javax.el.BeanELResolver
If the base object is not null, returns whether a call to BeanELResolver.setValue(javax.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object) will always fail.
isReadOnly(ELContext, Object, Object) - Method in class javax.el.CompositeELResolver
For a given base and property, attempts to determine whether a call to CompositeELResolver.setValue(javax.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object) will always fail.
isReadOnly(ELContext, Object, Object) - Method in class javax.el.ELResolver
For a given base and property, attempts to determine whether a call to ELResolver.setValue(javax.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object) will always fail.
isReadOnly(ELContext, Object, Object) - Method in class javax.el.ListELResolver
If the base object is a list, returns whether a call to ListELResolver.setValue(javax.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object) will always fail.
isReadOnly(ELContext, Object, Object) - Method in class javax.el.MapELResolver
If the base object is a map, returns whether a call to MapELResolver.setValue(javax.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object) will always fail.
isReadOnly(ELContext, Object, Object) - Method in class javax.el.ResourceBundleELResolver
If the base object is not null and an instanceof ResourceBundle, return true.
isReadOnly(ELContext) - Method in class javax.el.ValueExpression
Evaluates the expression relative to the provided context, and returns true if a call to ValueExpression.setValue(javax.el.ELContext, java.lang.Object) will always fail.

J

javax.el - package javax.el
Provides the API for the Unified Expression Language shared by the JSP 2.1 and JSF 1.2 technologies.

L

ListELResolver - Class in javax.el
Defines property resolution behavior on instances of List.
ListELResolver() - Constructor for class javax.el.ListELResolver
Creates a new read/write ListELResolver.
ListELResolver(boolean) - Constructor for class javax.el.ListELResolver
Creates a new ListELResolver whose read-only status is determined by the given parameter.
loadImplementationClassName(String, ClassLoader) - Static method in class org.jboss.el.cache.FactoryFinderCache
 

M

MapELResolver - Class in javax.el
Defines property resolution behavior on instances of Map.
MapELResolver() - Constructor for class javax.el.MapELResolver
Creates a new read/write MapELResolver.
MapELResolver(boolean) - Constructor for class javax.el.MapELResolver
Creates a new MapELResolver whose read-only status is determined by the given parameter.
MethodExpression - Class in javax.el
An Expression that refers to a method on an object.
MethodExpression() - Constructor for class javax.el.MethodExpression
 
MethodInfo - Class in javax.el
Holds information about a method that a MethodExpression evaluated to.
MethodInfo(String, Class<?>, Class<?>[]) - Constructor for class javax.el.MethodInfo
Creates a new instance of MethodInfo with the given information.
MethodNotFoundException - Exception in javax.el
Thrown when a method could not be found while evaluating a MethodExpression.
MethodNotFoundException() - Constructor for exception javax.el.MethodNotFoundException
Creates a MethodNotFoundException with no detail message.
MethodNotFoundException(String) - Constructor for exception javax.el.MethodNotFoundException
Creates a MethodNotFoundException with the provided detail message.
MethodNotFoundException(Throwable) - Constructor for exception javax.el.MethodNotFoundException
Creates a MethodNotFoundException with the given root cause.
MethodNotFoundException(String, Throwable) - Constructor for exception javax.el.MethodNotFoundException
Creates a MethodNotFoundException with the given detail message and root cause.

N

newInstance() - Static method in class javax.el.ExpressionFactory
Creates a new instance of a ExpressionFactory.
newInstance(Properties) - Static method in class javax.el.ExpressionFactory
Create a new instance of a ExpressionFactory, with optional properties.

O

org.jboss.el.cache - package org.jboss.el.cache
 

P

PropertyNotFoundException - Exception in javax.el
Thrown when a property could not be found while evaluating a ValueExpression or MethodExpression.
PropertyNotFoundException() - Constructor for exception javax.el.PropertyNotFoundException
Creates a PropertyNotFoundException with no detail message.
PropertyNotFoundException(String) - Constructor for exception javax.el.PropertyNotFoundException
Creates a PropertyNotFoundException with the provided detail message.
PropertyNotFoundException(Throwable) - Constructor for exception javax.el.PropertyNotFoundException
Creates a PropertyNotFoundException with the given root cause.
PropertyNotFoundException(String, Throwable) - Constructor for exception javax.el.PropertyNotFoundException
Creates a PropertyNotFoundException with the given detail message and root cause.
PropertyNotWritableException - Exception in javax.el
Thrown when a property could not be written to while setting the value on a ValueExpression.
PropertyNotWritableException() - Constructor for exception javax.el.PropertyNotWritableException
Creates a PropertyNotWritableException with no detail message.
PropertyNotWritableException(String) - Constructor for exception javax.el.PropertyNotWritableException
Creates a PropertyNotWritableException with the provided detail message.
PropertyNotWritableException(Throwable) - Constructor for exception javax.el.PropertyNotWritableException
Creates a PropertyNotWritableException with the given root cause.
PropertyNotWritableException(String, Throwable) - Constructor for exception javax.el.PropertyNotWritableException
Creates a PropertyNotWritableException with the given detail message and root cause.
putContext(Class, Object) - Method in class javax.el.ELContext
Associates a context object with this ELContext.

R

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

S

setLocale(Locale) - Method in class javax.el.ELContext
Set the Locale for this instance.
setPropertyResolved(boolean) - Method in class javax.el.ELContext
Called to indicate that a ELResolver has successfully resolved a given (base, property) pair.
setValue(ELContext, Object, Object, Object) - Method in class javax.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 javax.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 javax.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 javax.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 javax.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 javax.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 javax.el.ResourceBundleELResolver
If the base object is a ResourceBundle, throw a PropertyNotWritableException.
setValue(ELContext, Object) - Method in class javax.el.ValueExpression
Evaluates the expression relative to the provided context, and sets the result to the provided value.
setVariable(String, ValueExpression) - Method in class javax.el.VariableMapper
Assign a ValueExpression to an EL variable, replacing any previously assignment to the same variable.

T

TYPE - Static variable in class javax.el.ELResolver
The attribute name of the named attribute in the FeatureDescriptor that specifies the runtime type of the variable or property.

V

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

Copyright © 2013 JBoss, a division of Red Hat, Inc.. All rights reserved.