Class IndexedValueExpression

  • All Implemented Interfaces:
    java.io.Serializable

    public final class IndexedValueExpression
    extends ValueExpression
    implements java.io.Serializable
    ValueExpression that refers to a specific member of an indexed variable. This allows individual members of an indexed collection to be used as lvalues.
    See Also:
    Serialized Form
    • Constructor Detail

      • IndexedValueExpression

        public IndexedValueExpression​(ValueExpression valueExpression,
                                      int i)
        Constructor specifying indexed variable and index.
        Parameters:
        valueExpression - that evaluates to the indexed variable
        i - index specifying the member
    • Method Detail

      • equals

        public boolean equals​(java.lang.Object o)
        Specified by:
        equals in class Expression
      • getType

        public java.lang.Class getType​(ELContext elContext)
        Specified by:
        getType in class ValueExpression
        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 class ValueExpression
        Parameters:
        elContext - The EL context for this evaluation
        Returns:
        The result of evaluating this value expression
      • isReadOnly

        public boolean isReadOnly​(ELContext elContext)
        Specified by:
        isReadOnly in class ValueExpression
        Parameters:
        elContext - The EL context for this evaluation
        Returns:
        true if this expression is read only otherwise false
      • setValue

        public void setValue​(ELContext elContext,
                             java.lang.Object arg1)
        Specified by:
        setValue in class ValueExpression
        Parameters:
        elContext - The EL context for this evaluation
        arg1 - The value to set the property to which this value expression refers