Schnittstelle BooleanListIterator

Alle Superschnittstellen:
BooleanBidirectionalIterator, BooleanIterator, Iterator<Boolean>, ListIterator<Boolean>, ObjectBidirectionalIterator<Boolean>, ObjectIterator<Boolean>

public interface BooleanListIterator extends ListIterator<Boolean>, BooleanBidirectionalIterator
A Type Specific ListIterator that reduces boxing/unboxing
  • Methodendetails

    • set

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

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

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

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