Schnittstelle CharListIterator

Alle Superschnittstellen:
CharBidirectionalIterator, CharIterator, Iterator<Character>, ListIterator<Character>, ObjectBidirectionalIterator<Character>, ObjectIterator<Character>

public interface CharListIterator extends ListIterator<Character>, CharBidirectionalIterator
A Type Specific ListIterator that reduces boxing/unboxing
  • Methodendetails

    • set

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

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

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

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