Modifier and Type | Method and Description |
---|---|
Row |
Table.deleteRow(Row row)
Delete the given row.
|
static Row |
CursorBuilder.findRow(Index index,
Map<String,?> rowPattern)
Convenience method for finding a specific row in an indexed table which
matches a given row "pattern".
|
static Row |
CursorBuilder.findRow(Table table,
Map<String,?> rowPattern)
Convenience method for finding a specific row in a table which matches a
given row "pattern".
|
static Row |
CursorBuilder.findRowByEntry(Index index,
Object... entryValues)
Convenience method for finding a specific row (as defined by the cursor)
where the index entries match the given values.
|
Row |
IndexCursor.findRowByEntry(Object... entryValues)
Finds the first row (as defined by the cursor) where the index entries
match the given values.
|
static Row |
CursorBuilder.findRowByPrimaryKey(Table table,
Object... entryValues)
Convenience method for finding a specific row by the primary key of the
table.
|
Row |
Cursor.getCurrentRow()
Returns the current row in this cursor (Column name -> Column value).
|
Row |
Cursor.getCurrentRow(Collection<String> columnNames)
Returns the current row in this cursor (Column name -> Column value).
|
Row |
Cursor.getNextRow()
Moves to the next row in the table and returns it.
|
Row |
Table.getNextRow() |
Row |
Cursor.getNextRow(Collection<String> columnNames)
Moves to the next row in the table and returns it.
|
Row |
Cursor.getPreviousRow()
Moves to the previous row in the table and returns it.
|
Row |
Cursor.getPreviousRow(Collection<String> columnNames)
Moves to the previous row in the table and returns it.
|
Row |
Table.updateRow(Row row)
Update the given row.
|
Modifier and Type | Method and Description |
---|---|
Iterator<Row> |
Cursor.iterator()
Calls
Cursor.beforeFirst() on this cursor and returns a modifiable
Iterator which will iterate through all the rows of this table. |
Iterator<Row> |
Table.iterator()
Calls
Table.reset() on this table and returns a modifiable
Iterator which will iterate through all the rows of this table. |
default Stream<Row> |
Cursor.stream() |
default Stream<Row> |
Table.stream() |
Modifier and Type | Method and Description |
---|---|
Row |
Table.deleteRow(Row row)
Delete the given row.
|
Row |
Table.updateRow(Row row)
Update the given row.
|
Modifier and Type | Method and Description |
---|---|
List<Row> |
ComplexColumnInfo.getRawValues(int complexValueFk) |
List<Row> |
ComplexColumnInfo.getRawValues(int complexValueFk,
Collection<String> columnNames) |
Modifier and Type | Method and Description |
---|---|
void |
ComplexColumnInfo.deleteRawValue(Row rawValue) |
ComplexValue.Id |
ComplexColumnInfo.updateRawValue(Row rawValue) |
Modifier and Type | Class and Description |
---|---|
class |
RowImpl
A row of data as column->value pairs.
|
Modifier and Type | Method and Description |
---|---|
Row |
TableImpl.deleteRow(Row row) |
Row |
IndexCursorImpl.findRowByEntry(Object... entryValues) |
Row |
CursorImpl.getCurrentRow() |
Row |
CursorImpl.getCurrentRow(Collection<String> columnNames) |
Row |
TableImpl.getNextRow() |
Row |
CursorImpl.getNextRow() |
Row |
CursorImpl.getNextRow(Collection<String> columnNames) |
Row |
CursorImpl.getPreviousRow() |
Row |
CursorImpl.getPreviousRow(Collection<String> columnNames) |
Row |
TableImpl.updateRow(Row row) |
Modifier and Type | Method and Description |
---|---|
Iterator<Row> |
IndexCursorImpl.entryIterator(EntryIterableBuilder iterBuilder) |
Iterator<Row> |
TableImpl.iterator() |
Iterator<Row> |
CursorImpl.iterator() |
Iterator<Row> |
CursorImpl.iterator(IterableBuilder iterBuilder) |
Modifier and Type | Method and Description |
---|---|
Row |
TableImpl.deleteRow(Row row) |
Row |
TableImpl.updateRow(Row row) |
Constructor and Description |
---|
RowImpl(Row row) |
Modifier and Type | Method and Description |
---|---|
List<Row> |
ComplexValueForeignKeyImpl.getRawValues() |
List<Row> |
ComplexColumnInfoImpl.getRawValues(int complexValueFk) |
List<Row> |
ComplexColumnInfoImpl.getRawValues(int complexValueFk,
Collection<String> columnNames) |
Modifier and Type | Method and Description |
---|---|
void |
ComplexColumnInfoImpl.deleteRawValue(Row rawValue) |
ComplexValue.Id |
ComplexColumnInfoImpl.updateRawValue(Row rawValue) |
Modifier and Type | Method and Description |
---|---|
Row |
QueryImpl.Row.toTableRow() |
Constructor and Description |
---|
Row(Row tableRow) |
Modifier and Type | Method and Description |
---|---|
Row |
Joiner.findFirstRow(Map<String,?> fromRow)
Returns the first row in the "to" table based on the given columns in the
"from" table if any,
null if there is no matching row. |
Row |
Joiner.findFirstRow(Map<String,?> fromRow,
Collection<String> columnNames)
Returns selected columns from the first row in the "to" table based on
the given columns in the "from" table if any,
null if there is no
matching row. |
Modifier and Type | Method and Description |
---|---|
Iterable<Row> |
RowFilter.apply(Iterable<? extends Row> iterable)
Returns an iterable which filters the given iterable based on this
filter.
|
static Iterable<Row> |
RowFilter.apply(RowFilter rowFilter,
Iterable<? extends Row> iterable)
Returns an iterable which filters the given iterable based on the given
rowFilter.
|
Stream<Row> |
RowFilter.filter(Iterable<? extends Row> iterable)
Convenience method to apply this filter to the given iterable and return
it as a Stream.
|
Iterator<Row> |
IterableBuilder.iterator() |
Iterator<Row> |
EntryIterableBuilder.iterator() |
Stream<Row> |
IterableBuilder.stream() |
Stream<Row> |
EntryIterableBuilder.stream() |
Modifier and Type | Method and Description |
---|---|
abstract boolean |
RowFilter.matches(Row row)
Returns
true if the given table row matches the Filter criteria,
false otherwise. |
boolean |
RowFilter.test(Row row)
Adaptation of this class for
Predicate support. |
Modifier and Type | Method and Description |
---|---|
Iterable<Row> |
RowFilter.apply(Iterable<? extends Row> iterable)
Returns an iterable which filters the given iterable based on this
filter.
|
static Iterable<Row> |
RowFilter.apply(RowFilter rowFilter,
Iterable<? extends Row> iterable)
Returns an iterable which filters the given iterable based on the given
rowFilter.
|
Stream<Row> |
RowFilter.filter(Iterable<? extends Row> iterable)
Convenience method to apply this filter to the given iterable and return
it as a Stream.
|
Copyright © 2005–2024 OpenHMS. All rights reserved.