Schnittstelle ByteListIterator

Alle Superschnittstellen:
ByteBidirectionalIterator, ByteIterator, Iterator<Byte>, ListIterator<Byte>, ObjectBidirectionalIterator<Byte>, ObjectIterator<Byte>

public interface ByteListIterator extends ListIterator<Byte>, ByteBidirectionalIterator
A Type Specific ListIterator that reduces boxing/unboxing
  • Methodendetails

    • set

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

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

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

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