DataTableMapIterator< K, V > class

This is a helper class that makes it easy to return Map objects from the iterator method of a DataTable.

Syntax

public class DataTableMapIterator< K, V > extends java::util::Iterator< DataTableObject >

Members

All members of DataTableMapIterator< K, V >, including inherited members.

Methods
Modifier and Type Method Description
public DataTableMapIterator(Map< K, V >) Constructs a new DataTableMapIterator object.
public boolean hasNext()  
public DataTableObject next() Returns a new DataTableObject that contains the key and value of the next entry in the map.
public void remove()  

Usage

It iterates over the contents of the map and returns each map entry as a DataTableObject.