Schnittstelle FloatListIterator

Alle Superschnittstellen:
FloatBidirectionalIterator, FloatIterator, Iterator<Float>, ListIterator<Float>, ObjectBidirectionalIterator<Float>, ObjectIterator<Float>

public interface FloatListIterator extends ListIterator<Float>, FloatBidirectionalIterator
A Type Specific ListIterator that reduces boxing/unboxing
  • Methodendetails

    • set

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

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

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

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