TableIterator<Row> | 
TableAPI.tableIterator(java.util.Iterator<PrimaryKey> primaryKeyIterator,
             MultiRowOptions getOptions,
             TableIteratorOptions iterateOptions) | 
 Returns an iterator over the rows matching the primary keys supplied by
 iterator (or the rows in ancestor or descendant tables, or those in a
 range specified by the MultiRowOptions argument). 
 | 
TableIterator<Row> | 
TableAPI.tableIterator(java.util.List<java.util.Iterator<PrimaryKey>> primaryKeyIterators,
             MultiRowOptions getOptions,
             TableIteratorOptions iterateOptions) | 
 Returns an iterator over the rows matching the primary keys supplied by
 iterator (or the rows in ancestor or descendant tables, or those in a
 range specified by the MultiRowOptions argument). 
 | 
TableIterator<Row> | 
TableAPI.tableIterator(IndexKey key,
             MultiRowOptions getOptions,
             TableIteratorOptions iterateOptions) | 
 Returns an iterator over the rows associated with an index key. 
 | 
TableIterator<Row> | 
TableAPI.tableIterator(PrimaryKey key,
             MultiRowOptions getOptions,
             TableIteratorOptions iterateOptions) | 
 Returns an iterator over the rows associated with a partial primary key. 
 | 
TableIterator<PrimaryKey> | 
TableAPI.tableKeysIterator(java.util.Iterator<PrimaryKey> primaryKeyIterator,
                 MultiRowOptions getOptions,
                 TableIteratorOptions iterateOptions) | 
 Returns an iterator over the keys matching the primary keys supplied by
 iterator (or the rows in ancestor or descendant tables, or those in a
 range specified by the MultiRowOptions argument). 
 | 
TableIterator<PrimaryKey> | 
TableAPI.tableKeysIterator(java.util.List<java.util.Iterator<PrimaryKey>> primaryKeyIterators,
                 MultiRowOptions getOptions,
                 TableIteratorOptions iterateOptions) | 
 Returns an iterator over the keys matching the primary keys supplied by
 iterator (or the rows in ancestor or descendant tables, or those in a
 range specified by the MultiRowOptions argument). 
 | 
TableIterator<KeyPair> | 
TableAPI.tableKeysIterator(IndexKey key,
                 MultiRowOptions getOptions,
                 TableIteratorOptions iterateOptions) | 
 Return the keys for matching rows associated with an index key. 
 | 
TableIterator<PrimaryKey> | 
TableAPI.tableKeysIterator(PrimaryKey key,
                 MultiRowOptions getOptions,
                 TableIteratorOptions iterateOptions) | 
 Returns an iterator over the keys associated with a partial primary key. 
 |