Package javax.servlet.jsp.jstl.core
Class IteratedValueExpression
- java.lang.Object
-
- javax.el.Expression
-
- javax.el.ValueExpression
-
- javax.servlet.jsp.jstl.core.IteratedValueExpression
-
- All Implemented Interfaces:
java.io.Serializable
public final class IteratedValueExpression extends ValueExpression
ValueExpression that refers to a specific member of an indexed variable backed by an IteratedExpression. This allows individual members of an indexed collection to be used as lvalues.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IteratedValueExpression(IteratedExpression _iteratedExpr, int i)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.Class
getExpectedType()
java.lang.String
getExpressionString()
java.lang.Class
getType(ELContext elContext)
java.lang.Object
getValue(ELContext elContext)
int
hashCode()
boolean
isLiteralText()
boolean
isReadOnly(ELContext elContext)
void
setValue(ELContext elContext, java.lang.Object arg1)
-
Methods inherited from class javax.el.ValueExpression
getValueReference
-
-
-
-
Constructor Detail
-
IteratedValueExpression
public IteratedValueExpression(IteratedExpression _iteratedExpr, int i)
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object obj)
- Specified by:
equals
in classExpression
-
getExpectedType
public java.lang.Class getExpectedType()
- Specified by:
getExpectedType
in classValueExpression
-
getExpressionString
public java.lang.String getExpressionString()
- Specified by:
getExpressionString
in classExpression
-
getType
public java.lang.Class getType(ELContext elContext)
- Specified by:
getType
in classValueExpression
- Parameters:
elContext
- The EL context for this evaluation- Returns:
- The type of the result of this value expression
-
getValue
public java.lang.Object getValue(ELContext elContext)
- Specified by:
getValue
in classValueExpression
- Parameters:
elContext
- The EL context for this evaluation- Returns:
- The result of evaluating this value expression
-
hashCode
public int hashCode()
- Specified by:
hashCode
in classExpression
-
isLiteralText
public boolean isLiteralText()
- Specified by:
isLiteralText
in classExpression
-
isReadOnly
public boolean isReadOnly(ELContext elContext)
- Specified by:
isReadOnly
in classValueExpression
- Parameters:
elContext
- The EL context for this evaluation- Returns:
true
if this expression is read only otherwisefalse
-
setValue
public void setValue(ELContext elContext, java.lang.Object arg1)
- Specified by:
setValue
in classValueExpression
- Parameters:
elContext
- The EL context for this evaluationarg1
- The value to set the property to which this value expression refers
-
-