Schnittstelle DoubleListIterator

Alle Superschnittstellen:
DoubleBidirectionalIterator, DoubleIterator, Iterator<Double>, ListIterator<Double>, ObjectBidirectionalIterator<Double>, ObjectIterator<Double>

public interface DoubleListIterator extends ListIterator<Double>, DoubleBidirectionalIterator
A Type Specific ListIterator that reduces boxing/unboxing
  • Methodendetails

    • set

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

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

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

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