Uses of Class
com.datastax.astra.client.tables.commands.options.TableFindOptions
Package
Description
Top package to interact with Tables.
Options and Inputs for Tables commands.
Objects representing cursors working with find tables commands.
-
Uses of TableFindOptions in com.datastax.astra.client.tables
Modifier and TypeMethodDescriptionTable.find
(Filter filter, TableFindOptions options) Finds all rows in the table.<R> TableCursor
<T, R> Table.find
(Filter filter, TableFindOptions options, Class<R> newRowType) Finds all rows in the table.Table.find
(TableFindOptions options) Finds all rows in the table.Table.findPage
(Filter filter, TableFindOptions options) Executes a paginated 'find' query on the table using the specified filter and find options. -
Uses of TableFindOptions in com.datastax.astra.client.tables.commands.options
Modifier and TypeMethodDescriptionTableFindOptions.limit
(int limit) Add a limit clause in the find blockTableFindOptions.projection
(Projection... p) Adding this on top of sort(Sort[] s) to allow for a more fluent API.TableFindOptions.skip
(int skip) Add a skip clause in the find blockAdding this on top of sort(Sort[] s) to allow for a more fluent API. -
Uses of TableFindOptions in com.datastax.astra.client.tables.cursor
ModifierConstructorDescriptionTableCursor
(Table<T> table, Filter filter, TableFindOptions options, Class<R> rowType) Cursor to iterate on the result of a query.