[Java] Class IteratorBufferedIterator<T>
- org.codehaus.groovy.util.IteratorBufferedIterator
- All Implemented Interfaces and Traits:
- BufferedIterator
public class IteratorBufferedIterator<T> extends Object implements BufferedIterator
An implementation for BufferedIterator wraps Iterator.
- Since:
- 2.5.0
Constructor Summary
Constructor and description |
---|
IteratorBufferedIterator
(Iterator<T> iter) |
Methods Summary
Type Params | Return Type | Name and description |
---|---|---|
public boolean |
hasNext() | |
public T |
head() Return the next element to be returned by next() without consuming it. | |
public T |
next() | |
public void |
remove() |
Inherited Methods Summary
Methods inherited from class | Name |
---|---|
class Object | wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Constructor Detail
public IteratorBufferedIterator(Iterator<T> iter)
Method Detail
public boolean hasNext()
public T head()
Return the next element to be returned by next() without consuming it.
public T next()
public void remove()
© 2003-2020 The Apache Software Foundation
Licensed under the Apache license.
https://docs.groovy-lang.org/3.0.7/html/gapi/org/codehaus/groovy/util/IteratorBufferedIterator.html