Uses of Interface
oracle.kv.table.TableIterator
Package
Description
This package contains the public API for using Oracle NoSQL Database.
Table support for Oracle NoSQL Database.
-
Uses of TableIterator in oracle.kv
Modifier and TypeMethodDescriptionStatementResult.iterator()
Returns a TableIterator over the records in this result. -
Uses of TableIterator in oracle.kv.table
Modifier and TypeMethodDescriptionTableAPI.tableIterator
(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).TableAPI.tableIterator
(List<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).TableAPI.tableIterator
(IndexKey key, MultiRowOptions getOptions, TableIteratorOptions iterateOptions) Returns an iterator over the rows associated with an index key.TableAPI.tableIterator
(PrimaryKey key, MultiRowOptions getOptions, TableIteratorOptions iterateOptions) Returns an iterator over the rows associated with a partial primary key.TableAPI.tableKeysIterator
(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).TableAPI.tableKeysIterator
(List<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).TableAPI.tableKeysIterator
(IndexKey key, MultiRowOptions getOptions, TableIteratorOptions iterateOptions) Return the keys for matching rows associated with an index key.TableAPI.tableKeysIterator
(PrimaryKey key, MultiRowOptions getOptions, TableIteratorOptions iterateOptions) Returns an iterator over the keys associated with a partial primary key.