Package org.apache.el
Class ValueExpressionLiteral
- java.lang.Object
-
- jakarta.el.Expression
-
- jakarta.el.ValueExpression
-
- org.apache.el.ValueExpressionLiteral
-
- All Implemented Interfaces:
java.io.Externalizable,java.io.Serializable
public final class ValueExpressionLiteral extends ValueExpression implements java.io.Externalizable
A literal value expression that represents a constant value.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ValueExpressionLiteral()Constructs a new ValueExpressionLiteral for deserialization.ValueExpressionLiteral(java.lang.Object value, java.lang.Class<?> expectedType)Constructs a new ValueExpressionLiteral.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)booleanequals(ValueExpressionLiteral ve)Compares this literal value expression with another for equality.java.lang.Class<?>getExpectedType()Returns the expected type of the result of this expression.java.lang.StringgetExpressionString()Returns the original string representation of this EL expression as it was parsed.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.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.voidwriteExternal(java.io.ObjectOutput out)-
Methods inherited from class jakarta.el.ValueExpression
getValueReference
-
-
-
-
Constructor Detail
-
ValueExpressionLiteral
public ValueExpressionLiteral()
Constructs a new ValueExpressionLiteral for deserialization.
-
ValueExpressionLiteral
public ValueExpressionLiteral(java.lang.Object value, java.lang.Class<?> expectedType)Constructs a new ValueExpressionLiteral.- Parameters:
value- The literal valueexpectedType- The expected return type
-
-
Method Detail
-
getValue
public <T> T getValue(ELContext context)
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
-
setValue
public void setValue(ELContext context, java.lang.Object value)
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
-
isReadOnly
public boolean isReadOnly(ELContext context)
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
-
getType
public java.lang.Class<?> getType(ELContext context)
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
-
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()
Description copied from class:jakarta.el.ExpressionReturns the original string representation of this EL expression as it was parsed.- Specified by:
getExpressionStringin classExpression- Returns:
- the string representation of this expression
-
equals
public boolean equals(java.lang.Object obj)
- Specified by:
equalsin classExpression
-
equals
public boolean equals(ValueExpressionLiteral ve)
Compares this literal value expression with another for equality.- Parameters:
ve- The other literal value expression- Returns:
trueif the values are equal,falseotherwise
-
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
-
writeExternal
public void writeExternal(java.io.ObjectOutput out) throws java.io.IOException- Specified by:
writeExternalin interfacejava.io.Externalizable- Throws:
java.io.IOException
-
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
-
-