Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public interface

EntityIterator

implements Iterator <E>
android.content.EntityIterator

Class Overview

A specialization of Iterator that allows iterating over a collection of Entity objects. In addition to the iteration functionality it also allows resetting the iterator back to the beginning and provides for an explicit close() method to indicate that the iterator is no longer needed and that its resources can be released.

Summary

Public Methods
abstract void close ()
Indicates that this iterator is no longer needed and that any associated resources may be released (such as a SQLite cursor).
abstract void reset ()
Reset the iterator back to the beginning.
[Expand]
Inherited Methods
From interface java.util.Iterator

Public Methods

public abstract void close ()

Added in API level 8

Indicates that this iterator is no longer needed and that any associated resources may be released (such as a SQLite cursor).

public abstract void reset ()

Added in API level 8

Reset the iterator back to the beginning.