Top Description Fields Constructors Methods
org.python.core

public abstract Class WrappedIterIterator<E>

extends Object
implements Iterator<E>
Class Inheritance
All Implemented Interfaces
java.util.Iterator
Imports
java.util.Iterator, .NoSuchElementException

Exposes a Python iter as a Java Iterator.

Field Summary

Modifier and TypeField and Description
private boolean
private final PyObject
private PyObject

Constructor Summary

AccessConstructor and Description
public

Method Summary

Modifier and TypeMethod and Description
public PyObject
public boolean
hasNext()

Implements java.util.Iterator.hasNext.

Returns true if the iteration has more elements.

public abstract E
next()

Redeclares java.util.Iterator.next.

Subclasses must implement this to turn the type returned by the iter to the type expected by Java.

public void
remove()

Overrides default java.util.Iterator.remove.

Removes from the underlying collection the last element returned by this iterator (optional operation).

Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Field Detail

checkedForNextback to summary
private boolean checkedForNext
iterback to summary
private final PyObject iter
nextback to summary
private PyObject next

Constructor Detail

WrappedIterIteratorback to summary
public WrappedIterIterator(PyObject iter)

Method Detail

getNextback to summary
public PyObject getNext()
hasNextback to summary
public boolean hasNext()

Implements java.util.Iterator.hasNext.

Doc from java.util.Iterator.hasNext.

Returns true if the iteration has more elements. (In other words, returns true if next would return an element rather than throwing an exception.)

Returns:boolean

true if the iteration has more elements

nextback to summary
public abstract E next()

Redeclares java.util.Iterator.next.

Subclasses must implement this to turn the type returned by the iter to the type expected by Java.

Returns:E

Doc from java.util.Iterator.next.

the next element in the iteration

removeback to summary
public void remove()

Overrides default java.util.Iterator.remove.

Doc from java.util.Iterator.remove.

Removes from the underlying collection the last element returned by this iterator (optional operation). This method can be called only once per call to next.

The behavior of an iterator is unspecified if the underlying collection is modified while the iteration is in progress in any way other than by calling this method, unless an overriding class has specified a concurrent modification policy.

The behavior of an iterator is unspecified if this method is called after a call to the forEachRemaining method.