Package it.unimi.dsi.fastutil.doubles
Class DoubleIterators.UnmodifiableBidirectionalIterator
java.lang.Object
it.unimi.dsi.fastutil.doubles.DoubleIterators.UnmodifiableBidirectionalIterator
- All Implemented Interfaces:
BidirectionalIterator<java.lang.Double>,DoubleBidirectionalIterator,DoubleIterator,ObjectBidirectionalIterator<java.lang.Double>,ObjectIterator<java.lang.Double>,java.util.Iterator<java.lang.Double>,java.util.PrimitiveIterator<java.lang.Double,java.util.function.DoubleConsumer>,java.util.PrimitiveIterator.OfDouble
- Enclosing class:
- DoubleIterators
public static class DoubleIterators.UnmodifiableBidirectionalIterator extends java.lang.Object implements DoubleBidirectionalIterator
An unmodifiable wrapper class for bidirectional iterators.
-
Nested Class Summary
Nested classes/interfaces inherited from interface java.util.PrimitiveIterator
java.util.PrimitiveIterator.OfDouble, java.util.PrimitiveIterator.OfInt, java.util.PrimitiveIterator.OfLong -
Constructor Summary
Constructors Constructor Description UnmodifiableBidirectionalIterator(DoubleBidirectionalIterator i) -
Method Summary
Modifier and Type Method Description 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.doublepreviousDouble()Returns the previous element as a primitive type.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleBidirectionalIterator
back, previous, skipMethods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleIterator
forEachRemaining, nextMethods inherited from interface java.util.Iterator
remove
-
Constructor Details
-
UnmodifiableBidirectionalIterator
-
-
Method Details
-
hasNext
public boolean hasNext()- Specified by:
hasNextin interfacejava.util.Iterator<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>- 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()
-
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
-