Class UnmodifiableListIterator<E>

  • All Implemented Interfaces:
    java.util.Iterator<E>, java.util.ListIterator<E>

    @GwtCompatible
    @Deprecated(since="2022-12-01")
    public abstract class UnmodifiableListIterator<E>
    extends UnmodifiableIterator<E>
    implements java.util.ListIterator<E>
    Deprecated.
    The Google Guava Core Libraries are deprecated and will not be part of the AEM SDK after April 2023
    A list iterator that does not support UnmodifiableIterator.remove(), add(E), or set(E).
    Since:
    7.0
    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      void add​(E e)
      Deprecated.
      Unsupported operation.
      void set​(E e)
      Deprecated.
      Unsupported operation.
      • Methods inherited from class java.lang.Object

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

        forEachRemaining
      • Methods inherited from interface java.util.ListIterator

        hasNext, hasPrevious, next, nextIndex, previous, previousIndex, remove
    • Method Detail

      • add

        @Deprecated
        public final void add​(E e)
        Deprecated.
        Unsupported operation.
        Guaranteed to throw an exception and leave the underlying data unmodified.
        Specified by:
        add in interface java.util.ListIterator<E>
        Throws:
        java.lang.UnsupportedOperationException - always
      • set

        @Deprecated
        public final void set​(E e)
        Deprecated.
        Unsupported operation.
        Guaranteed to throw an exception and leave the underlying data unmodified.
        Specified by:
        set in interface java.util.ListIterator<E>
        Throws:
        java.lang.UnsupportedOperationException - always