Schnittstelle LongListIterator

Alle Superschnittstellen:
Iterator<Long>, ListIterator<Long>, LongBidirectionalIterator, LongIterator, ObjectBidirectionalIterator<Long>, ObjectIterator<Long>

public interface LongListIterator extends ListIterator<Long>, LongBidirectionalIterator
A Type Specific ListIterator that reduces boxing/unboxing
  • Methodendetails

    • set

      void set(long 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(long 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 Long 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 ListIterator<Long>
      Angegeben von:
      previous in Schnittstelle LongBidirectionalIterator
      Angegeben von:
      previous in Schnittstelle ObjectBidirectionalIterator<Long>
      Gibt zurück:
      the Previous element of the iterator.
    • next

      @Deprecated default Long 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 Iterator<Long>
      Angegeben von:
      next in Schnittstelle ListIterator<Long>
      Angegeben von:
      next in Schnittstelle LongIterator
    • set

      @Deprecated default void set(Long 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<Long>
    • add

      @Deprecated default void add(Long 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<Long>