Package it.unimi.dsi.fastutil.doubles
Class DoubleIterators.EmptyIterator
- java.lang.Object
-
- it.unimi.dsi.fastutil.doubles.DoubleIterators.EmptyIterator
-
- All Implemented Interfaces:
BidirectionalIterator<java.lang.Double>,DoubleBidirectionalIterator,DoubleIterator,DoubleListIterator,ObjectBidirectionalIterator<java.lang.Double>,ObjectIterator<java.lang.Double>,java.io.Serializable,java.lang.Cloneable,java.util.Iterator<java.lang.Double>,java.util.ListIterator<java.lang.Double>,java.util.PrimitiveIterator<java.lang.Double,java.util.function.DoubleConsumer>,java.util.PrimitiveIterator.OfDouble
- Enclosing class:
- DoubleIterators
public static class DoubleIterators.EmptyIterator extends java.lang.Object implements DoubleListIterator, java.io.Serializable, java.lang.Cloneable
A class returning no elements and a type-specific iterator interface.This class may be useful to implement your own in case you subclass a type-specific iterator.
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description intback(int n)Moves back for the given number of elements.java.lang.Objectclone()voidforEachRemaining(java.util.function.Consumer<? super java.lang.Double> action)Deprecated.voidforEachRemaining(java.util.function.DoubleConsumer action)booleanhasNext()booleanhasPrevious()Returns whether there is a previous element.doublenextDouble()Returns the next element as a primitive type.intnextIndex()doublepreviousDouble()Returns the previous element as a primitive type.intpreviousIndex()intskip(int n)Skips the given number of elements.-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleIterator
forEachRemaining
-
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNextin interfacejava.util.Iterator<java.lang.Double>- Specified by:
hasNextin interfacejava.util.ListIterator<java.lang.Double>
-
hasPrevious
public boolean hasPrevious()
Description copied from interface:BidirectionalIteratorReturns whether there is a previous element.- Specified by:
hasPreviousin interfaceBidirectionalIterator<java.lang.Double>- Specified by:
hasPreviousin interfacejava.util.ListIterator<java.lang.Double>- Returns:
- whether there is a previous element.
- See Also:
ListIterator.hasPrevious()
-
nextDouble
public double nextDouble()
Description copied from interface:DoubleIteratorReturns the next element as a primitive type.- Specified by:
nextDoublein interfaceDoubleIterator- Specified by:
nextDoublein interfacejava.util.PrimitiveIterator.OfDouble- Returns:
- the next element in the iteration.
- See Also:
Iterator.next()
-
previousDouble
public double previousDouble()
Description copied from interface:DoubleBidirectionalIteratorReturns the previous element as a primitive type.- Specified by:
previousDoublein interfaceDoubleBidirectionalIterator- Returns:
- the previous element in the iteration.
- See Also:
ListIterator.previous()
-
nextIndex
public int nextIndex()
- Specified by:
nextIndexin interfacejava.util.ListIterator<java.lang.Double>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndexin interfacejava.util.ListIterator<java.lang.Double>
-
skip
public int skip(int n)
Description copied from interface:DoubleBidirectionalIteratorSkips the given number of elements.The effect of this call is exactly the same as that of calling
DoubleIterator.next()forntimes (possibly stopping ifIterator.hasNext()becomes false).- Specified by:
skipin interfaceDoubleBidirectionalIterator- Specified by:
skipin interfaceDoubleIterator- Specified by:
skipin interfaceObjectBidirectionalIterator<java.lang.Double>- Specified by:
skipin interfaceObjectIterator<java.lang.Double>- Parameters:
n- the number of elements to skip.- Returns:
- the number of elements actually skipped.
- See Also:
Iterator.next()
-
back
public int back(int n)
Description copied from interface:DoubleBidirectionalIteratorMoves back for the given number of elements.The effect of this call is exactly the same as that of calling
DoubleBidirectionalIterator.previous()forntimes (possibly stopping ifBidirectionalIterator.hasPrevious()becomes false).- Specified by:
backin interfaceDoubleBidirectionalIterator- Specified by:
backin interfaceObjectBidirectionalIterator<java.lang.Double>- Parameters:
n- the number of elements to skip back.- Returns:
- the number of elements actually skipped.
- See Also:
DoubleBidirectionalIterator.previous()
-
forEachRemaining
public void forEachRemaining(java.util.function.DoubleConsumer action)
- Specified by:
forEachRemainingin interfacejava.util.PrimitiveIterator<java.lang.Double,java.util.function.DoubleConsumer>- Specified by:
forEachRemainingin interfacejava.util.PrimitiveIterator.OfDouble
-
forEachRemaining
@Deprecated public void forEachRemaining(java.util.function.Consumer<? super java.lang.Double> action)
Deprecated.Description copied from interface:DoubleIterator- Specified by:
forEachRemainingin interfaceDoubleIterator- Specified by:
forEachRemainingin interfacejava.util.Iterator<java.lang.Double>- Specified by:
forEachRemainingin interfacejava.util.PrimitiveIterator.OfDouble
-
clone
public java.lang.Object clone()
-
-