Interface ImmutableArrayValue

    • Method Detail

      • iterator

        java.util.Iterator<Value> iterator()
        Returns an iterator over elements. Returned Iterator does not support remove() method since the value is immutable.
        Specified by:
        iterator in interface ArrayValue
        Specified by:
        iterator in interface java.lang.Iterable<Value>
      • list

        java.util.List<Value> list()
        Returns the value as List. Returned List is immutable. It does not support put(), clear(), or other methods that modify the value.
        Specified by:
        list in interface ArrayValue