Class AbstractEmptyMapIterator<K,​V>

    • Constructor Summary

      Constructors 
      Constructor Description
      AbstractEmptyMapIterator()
      Create a new AbstractEmptyMapIterator.
    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      void add​(E ignored)
      Deprecated.
      Will be removed in 5.0 without replacement.
      K getKey()
      Always throws IllegalStateException.
      V getValue()
      Always throws IllegalStateException.
      boolean hasNext()
      Always returns false, this iterator contains no elements.
      boolean hasPrevious()
      Always returns false, this iterator contains no elements.
      E next()
      Always throws IllegalStateException, this iterator contains no elements.
      int nextIndex()
      Always returns 0, this iterator contains no elements.
      E previous()
      Always throws IllegalStateException, this iterator contains no elements.
      int previousIndex()
      Always returns -1, this iterator contains no elements.
      void remove()
      Always throws IllegalStateException, this iterator contains no elements.
      void reset()
      Resets the iterator back to the position at which the iterator was created.
      void set​(E ignored)
      Always throws IllegalStateException, this iterator contains no elements.
      V setValue​(V ignored)
      Always throws IllegalStateException.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.Iterator

        forEachRemaining
    • Method Detail

      • getKey

        public K getKey()
        Always throws IllegalStateException.
        Returns:
        Always throws IllegalStateException.
        Throws:
        java.lang.IllegalStateException - Always thrown.
      • getValue

        public V getValue()
        Always throws IllegalStateException.
        Returns:
        Always throws IllegalStateException.
        Throws:
        java.lang.IllegalStateException - Always thrown.
      • setValue

        public V setValue​(V ignored)
        Always throws IllegalStateException.
        Parameters:
        ignored - ignored.
        Returns:
        Always throws IllegalStateException.
        Throws:
        java.lang.IllegalStateException - Always thrown.
      • add

        @Deprecated
        public void add​(E ignored)
        Deprecated.
        Will be removed in 5.0 without replacement.
        Always throws UnsupportedOperationException.
        Parameters:
        ignored - ignore.
        Throws:
        java.lang.UnsupportedOperationException - Always thrown.
      • hasNext

        public boolean hasNext()
        Always returns false, this iterator contains no elements.
        Specified by:
        hasNext in interface java.util.Iterator<E>
        Returns:
        Always false.
      • hasPrevious

        public boolean hasPrevious()
        Always returns false, this iterator contains no elements.
        Returns:
        Always false.
      • next

        public E next()
        Always throws IllegalStateException, this iterator contains no elements.
        Specified by:
        next in interface java.util.Iterator<E>
        Returns:
        Always throws IllegalStateException.
        Throws:
        java.lang.IllegalStateException - Always thrown.
      • nextIndex

        public int nextIndex()
        Always returns 0, this iterator contains no elements.
        Returns:
        Always returns 0.
      • previous

        public E previous()
        Always throws IllegalStateException, this iterator contains no elements.
        Returns:
        Always throws IllegalStateException.
        Throws:
        java.lang.IllegalStateException - Always thrown.
      • previousIndex

        public int previousIndex()
        Always returns -1, this iterator contains no elements.
        Returns:
        Always returns -1.
      • remove

        public void remove()
        Always throws IllegalStateException, this iterator contains no elements.
        Specified by:
        remove in interface java.util.Iterator<E>
        Throws:
        java.lang.IllegalStateException - Always thrown.
      • reset

        public void reset()
        Description copied from interface: ResettableIterator
        Resets the iterator back to the position at which the iterator was created.
        Specified by:
        reset in interface ResettableIterator<E>
      • set

        public void set​(E ignored)
        Always throws IllegalStateException, this iterator contains no elements.
        Parameters:
        ignored - ignored.
        Throws:
        java.lang.IllegalStateException - Always thrown.