Class ListMap.XIterator

    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.util.ListIterator<K> lIter
      An iterator over the list view of the key set of the enclosing ListMap.
    • Constructor Summary

      Constructors 
      Constructor Description
      XIterator()
      Creates a pre-iterator.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean hasNext()
      Returns whether the iterators based on this class has a next value.
      void remove()
      Removes from the underlying collection the last element returned by the iterator based on this class.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • hasNext

        public boolean hasNext()
        Returns whether the iterators based on this class has a next value.
        See Also:
        Iterator.hasNext()
      • remove

        public void remove()
        Removes from the underlying collection the last element returned by the iterator based on this class.
        See Also:
        Iterator.remove()