[Java] Class ListBufferedIterator<T>

  • org.codehaus.groovy.util.ListBufferedIterator
All Implemented Interfaces and Traits:
BufferedIterator
public class ListBufferedIterator
extends Object

An implementation for BufferedIterator wraps ListIterator. This version provides an implementation for remove().

Since:
2.5.0

Constructor Summary

Constructors
Constructor and description
ListBufferedIterator (List<T> list)

Methods Summary

Methods
Type Params Return Type Name and description
boolean hasNext()
T head()
Return the next element to be returned by next() without consuming it.
T next()
void remove()

Inherited Methods Summary

Inherited Methods
Methods inherited from class Name
class Object wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll

Constructor Detail

public ListBufferedIterator(List<T> list)

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/2.5.14/html/gapi/org/codehaus/groovy/util/ListBufferedIterator.html