Class ValueExpressionImpl
- java.lang.Object
-
- jakarta.el.Expression
-
- jakarta.el.ValueExpression
-
- org.apache.el.ValueExpressionImpl
-
- All Implemented Interfaces:
java.io.Externalizable,java.io.Serializable
public final class ValueExpressionImpl extends ValueExpression implements java.io.Externalizable
AnExpressionthat can get or set a value.In previous incarnations of this API, expressions could only be read.
ValueExpressionobjects can now be used both to retrieve a value and to set a value. Expressions that can have a value set on them are referred to as l-value expressions. Those that cannot are referred to as r-value expressions. Not all r-value expressions can be used as l-value expressions (e.g."${1+1}"or"${firstName} ${lastName}"). See the EL Specification for details. Expressions that cannot be used as l-values must always returntruefromisReadOnly().The
ExpressionFactory.createValueExpression(jakarta.el.ELContext, java.lang.String, java.lang.Class<?>)method can be used to parse an expression string and return a concrete instance ofValueExpressionthat encapsulates the parsed expression. TheFunctionMapperis used at parse time, not evaluation time, so one is not needed to evaluate an expression using this class. However, theELContextis needed at evaluation time.The
getValue(jakarta.el.ELContext),setValue(jakarta.el.ELContext, java.lang.Object),isReadOnly(jakarta.el.ELContext)andgetType(jakarta.el.ELContext)methods will evaluate the expression each time they are called. TheELResolverin theELContextis used to resolve the top-level variables and to determine the behavior of the.and[]operators. For any of the four methods, theELResolver.getValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object)method is used to resolve all properties up to but excluding the last one. This provides thebaseobject. At the last resolution, theValueExpressionwill call the correspondingELResolver.getValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object),ELResolver.setValue(jakarta.el.ELContext, java.lang.Object, java.lang.Object, java.lang.Object),ELResolver.isReadOnly(jakarta.el.ELContext, java.lang.Object, java.lang.Object)orELResolver.getType(jakarta.el.ELContext, java.lang.Object, java.lang.Object)method, depending on which was called on theValueExpression.See the notes about comparison, serialization and immutability in the
Expressionjavadocs.- See Also:
ELResolver,Expression,ExpressionFactory,ValueExpression, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ValueExpressionImpl()Constructs a new ValueExpressionImpl.ValueExpressionImpl(java.lang.String expr, org.apache.el.parser.Node node, FunctionMapper fnMapper, VariableMapper varMapper, java.lang.Class<?> expectedType)Constructs a new ValueExpressionImpl.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.Class<?>getExpectedType()Returns the expected type of the result of this expression.java.lang.StringgetExpressionString()Returns the type the result of the expression will be coerced to after evaluation.java.lang.Class<?>getType(ELContext context)Returns the type of the result produced by evaluating this expression.<T> TgetValue(ELContext context)Evaluates this expression and returns the result.ValueReferencegetValueReference(ELContext context)Returns a reference to the resolved property for this expression.inthashCode()booleanisLiteralText()Returns whether this expression is a literal text expression, meaning it does not contain any variables, functions, or operators and evaluates to a constant value.booleanisReadOnly(ELContext context)Determines whether the property referenced by this expression is read-only.voidreadExternal(java.io.ObjectInput in)voidsetValue(ELContext context, java.lang.Object value)Sets the value of the property referenced by this expression.java.lang.StringtoString()voidwriteExternal(java.io.ObjectOutput out)
-
-
-
Constructor Detail
-
ValueExpressionImpl
public ValueExpressionImpl()
Constructs a new ValueExpressionImpl.
-
ValueExpressionImpl
public ValueExpressionImpl(java.lang.String expr, org.apache.el.parser.Node node, FunctionMapper fnMapper, VariableMapper varMapper, java.lang.Class<?> expectedType)Constructs a new ValueExpressionImpl.- Parameters:
expr- The expression stringnode- The AST nodefnMapper- The function mappervarMapper- The variable mapperexpectedType- The expected return type
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object obj)
- Specified by:
equalsin classExpression
-
getExpectedType
public java.lang.Class<?> getExpectedType()
Description copied from class:jakarta.el.ValueExpressionReturns the expected type of the result of this expression.- Specified by:
getExpectedTypein classValueExpression- Returns:
- The expected result type, or
Object.classif no specific type is expected
-
getExpressionString
public java.lang.String getExpressionString()
Returns the type the result of the expression will be coerced to after evaluation.- Specified by:
getExpressionStringin classExpression- Returns:
- the
expectedTypepassed to theExpressionFactory.createValueExpressionmethod that created thisValueExpression. - See Also:
Expression.getExpressionString()
-
getType
public java.lang.Class<?> getType(ELContext context) throws PropertyNotFoundException, ELException
Description copied from class:jakarta.el.ValueExpressionReturns the type of the result produced by evaluating this expression.- Specified by:
getTypein classValueExpression- Parameters:
context- The EL context for this evaluation- Returns:
- The type of the result of this value expression
- Throws:
PropertyNotFoundException- If a property/variable resolution failed because no match was found or a match was found but was not readableELException- Wraps any exception throw whilst resolving a property or variable
-
getValue
public <T> T getValue(ELContext context) throws PropertyNotFoundException, ELException
Description copied from class:jakarta.el.ValueExpressionEvaluates this expression and returns the result.- Specified by:
getValuein classValueExpression- Type Parameters:
T- The expected type for the result of evaluating this value expression- Parameters:
context- The EL context for this evaluation- Returns:
- The result of evaluating this value expression
- Throws:
PropertyNotFoundException- If a property/variable resolution failed because no match was found or a match was found but was not readableELException- Wraps any exception throw whilst resolving a property or variable
-
hashCode
public int hashCode()
- Specified by:
hashCodein classExpression
-
isLiteralText
public boolean isLiteralText()
Description copied from class:jakarta.el.ExpressionReturns whether this expression is a literal text expression, meaning it does not contain any variables, functions, or operators and evaluates to a constant value.- Specified by:
isLiteralTextin classExpression- Returns:
trueif this expression is a literal text,falseotherwise
-
isReadOnly
public boolean isReadOnly(ELContext context) throws PropertyNotFoundException, ELException
Description copied from class:jakarta.el.ValueExpressionDetermines whether the property referenced by this expression is read-only.- Specified by:
isReadOnlyin classValueExpression- Parameters:
context- The EL context for this evaluation- Returns:
trueif this expression is read only otherwisefalse- Throws:
PropertyNotFoundException- If a property/variable resolution failed because no match was found or a match was found but was not readableELException- Wraps any exception throw whilst resolving a property or variable
-
readExternal
public void readExternal(java.io.ObjectInput in) throws java.io.IOException, java.lang.ClassNotFoundException- Specified by:
readExternalin interfacejava.io.Externalizable- Throws:
java.io.IOExceptionjava.lang.ClassNotFoundException
-
setValue
public void setValue(ELContext context, java.lang.Object value) throws PropertyNotFoundException, PropertyNotWritableException, ELException
Description copied from class:jakarta.el.ValueExpressionSets the value of the property referenced by this expression.- Specified by:
setValuein classValueExpression- Parameters:
context- The EL context for this evaluationvalue- The value to set the property to which this value expression refers- Throws:
PropertyNotFoundException- If a property/variable resolution failed because no match was foundPropertyNotWritableException- If a property/variable resolution failed because a match was found but was not writableELException- Wraps any exception throw whilst resolving a property or variable
-
writeExternal
public void writeExternal(java.io.ObjectOutput out) throws java.io.IOException- Specified by:
writeExternalin interfacejava.io.Externalizable- Throws:
java.io.IOException
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getValueReference
public ValueReference getValueReference(ELContext context)
Description copied from class:jakarta.el.ValueExpressionReturns a reference to the resolved property for this expression.This default implementation always returns
null. Subclasses should override this method to provide the resolved base object and property.- Overrides:
getValueReferencein classValueExpression- Parameters:
context- The EL context for this evaluation- Returns:
- This default implementation always returns
null
-
-