Schnittstelle IntListIterator

Alle Superschnittstellen:
IntBidirectionalIterator, IntIterator, Iterator<Integer>, ListIterator<Integer>, ObjectBidirectionalIterator<Integer>, ObjectIterator<Integer>

public interface IntListIterator extends ListIterator<Integer>, IntBidirectionalIterator
A Type Specific ListIterator that reduces boxing/unboxing
  • Methodendetails

    • set

      void set(int e)
      A Primitive set function to reduce (un)boxing
      Parameter:
      e - the element that should replace the last returned value
      Siehe auch:
    • add

      void add(int e)
      A Primitive set function to reduce (un)boxing
      Parameter:
      e - the element that should be inserted before the last returned value
      Siehe auch:
    • previous

      @Deprecated default Integer previous()
      Veraltet.
      Please use the corresponding type-specific function instead.
      Returns the Previous element of the iterator.

      This default implementation delegates to the corresponding type-specific function.

      This default implementation delegates to the corresponding type-specific function.

      Angegeben von:
      previous in Schnittstelle IntBidirectionalIterator
      Angegeben von:
      previous in Schnittstelle ListIterator<Integer>
      Angegeben von:
      previous in Schnittstelle ObjectBidirectionalIterator<Integer>
      Gibt zurück:
      the Previous element of the iterator.
    • next

      @Deprecated default Integer next()
      Veraltet.
      Please use the corresponding type-specific function instead.

      This default implementation delegates to the corresponding type-specific function.

      This default implementation delegates to the corresponding type-specific function.

      Angegeben von:
      next in Schnittstelle IntIterator
      Angegeben von:
      next in Schnittstelle Iterator<Integer>
      Angegeben von:
      next in Schnittstelle ListIterator<Integer>
    • set

      @Deprecated default void set(Integer e)
      Veraltet.
      Please use the corresponding type-specific function instead.

      This default implementation delegates to the corresponding type-specific function.

      Angegeben von:
      set in Schnittstelle ListIterator<Integer>
    • add

      @Deprecated default void add(Integer e)
      Veraltet.
      Please use the corresponding type-specific function instead.

      This default implementation delegates to the corresponding type-specific function.

      Angegeben von:
      add in Schnittstelle ListIterator<Integer>