Schnittstelle ShortListIterator

Alle Superschnittstellen:
Iterator<Short>, ListIterator<Short>, ObjectBidirectionalIterator<Short>, ObjectIterator<Short>, ShortBidirectionalIterator, ShortIterator

public interface ShortListIterator extends ListIterator<Short>, ShortBidirectionalIterator
A Type Specific ListIterator that reduces boxing/unboxing
  • Methodendetails

    • set

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

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

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

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