|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of Row in com.healthmarketscience.jackcess |
|---|
| Methods in com.healthmarketscience.jackcess that return Row | |
|---|---|
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 |
Table.getNextRow()
|
Row |
Cursor.getNextRow()
Moves to the next row in the table and returns it. |
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. |
| Methods in com.healthmarketscience.jackcess that return types with arguments of type Row | |
|---|---|
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. |
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. |
| Methods in com.healthmarketscience.jackcess with parameters of type Row | |
|---|---|
Row |
Table.deleteRow(Row row)
Delete the given row. |
Row |
Table.updateRow(Row row)
Update the given row. |
| Uses of Row in com.healthmarketscience.jackcess.complex |
|---|
| Methods in com.healthmarketscience.jackcess.complex that return types with arguments of type Row | |
|---|---|
List<Row> |
ComplexColumnInfo.getRawValues(int complexValueFk)
|
List<Row> |
ComplexColumnInfo.getRawValues(int complexValueFk,
Collection<String> columnNames)
|
| Methods in com.healthmarketscience.jackcess.complex with parameters of type Row | |
|---|---|
void |
ComplexColumnInfo.deleteRawValue(Row rawValue)
|
ComplexValue.Id |
ComplexColumnInfo.updateRawValue(Row rawValue)
|
| Uses of Row in com.healthmarketscience.jackcess.impl |
|---|
| Classes in com.healthmarketscience.jackcess.impl that implement Row | |
|---|---|
class |
RowImpl
A row of data as column->value pairs. |
| Methods in com.healthmarketscience.jackcess.impl that return Row | |
|---|---|
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 |
CursorImpl.BaseIterator.next()
|
Row |
TableImpl.updateRow(Row row)
|
| Methods in com.healthmarketscience.jackcess.impl that return types with arguments of type Row | |
|---|---|
Iterator<Row> |
IndexCursorImpl.entryIterator(EntryIterableBuilder iterBuilder)
|
Iterator<Row> |
TableImpl.iterator()
|
Iterator<Row> |
CursorImpl.iterator()
|
Iterator<Row> |
CursorImpl.iterator(IterableBuilder iterBuilder)
|
| Methods in com.healthmarketscience.jackcess.impl with parameters of type Row | |
|---|---|
Row |
TableImpl.deleteRow(Row row)
|
Row |
TableImpl.updateRow(Row row)
|
| Constructors in com.healthmarketscience.jackcess.impl with parameters of type Row | |
|---|---|
RowImpl(Row row)
|
|
| Uses of Row in com.healthmarketscience.jackcess.impl.complex |
|---|
| Methods in com.healthmarketscience.jackcess.impl.complex that return types with arguments of type Row | |
|---|---|
List<Row> |
ComplexValueForeignKeyImpl.getRawValues()
|
List<Row> |
ComplexColumnInfoImpl.getRawValues(int complexValueFk)
|
List<Row> |
ComplexColumnInfoImpl.getRawValues(int complexValueFk,
Collection<String> columnNames)
|
| Methods in com.healthmarketscience.jackcess.impl.complex with parameters of type Row | |
|---|---|
void |
ComplexColumnInfoImpl.deleteRawValue(Row rawValue)
|
protected com.healthmarketscience.jackcess.impl.complex.ComplexColumnInfoImpl.ComplexValueIdImpl |
ComplexColumnInfoImpl.getValueId(Row row)
|
protected abstract V |
ComplexColumnInfoImpl.toValue(ComplexValueForeignKey complexValueFk,
Row rawValues)
|
protected com.healthmarketscience.jackcess.impl.complex.UnsupportedColumnInfoImpl.UnsupportedValueImpl |
UnsupportedColumnInfoImpl.toValue(ComplexValueForeignKey complexValueFk,
Row rawValue)
|
protected com.healthmarketscience.jackcess.impl.complex.AttachmentColumnInfoImpl.AttachmentImpl |
AttachmentColumnInfoImpl.toValue(ComplexValueForeignKey complexValueFk,
Row rawValue)
|
protected com.healthmarketscience.jackcess.impl.complex.MultiValueColumnInfoImpl.SingleValueImpl |
MultiValueColumnInfoImpl.toValue(ComplexValueForeignKey complexValueFk,
Row rawValue)
|
protected com.healthmarketscience.jackcess.impl.complex.VersionHistoryColumnInfoImpl.VersionImpl |
VersionHistoryColumnInfoImpl.toValue(ComplexValueForeignKey complexValueFk,
Row rawValue)
|
ComplexValue.Id |
ComplexColumnInfoImpl.updateRawValue(Row rawValue)
|
| Method parameters in com.healthmarketscience.jackcess.impl.complex with type arguments of type Row | |
|---|---|
protected List<V> |
ComplexColumnInfoImpl.toValues(ComplexValueForeignKey complexValueFk,
List<Row> rawValues)
|
protected List<Version> |
VersionHistoryColumnInfoImpl.toValues(ComplexValueForeignKey complexValueFk,
List<Row> rawValues)
|
| Uses of Row in com.healthmarketscience.jackcess.impl.query |
|---|
| Methods in com.healthmarketscience.jackcess.impl.query that return Row | |
|---|---|
Row |
QueryImpl.Row.toTableRow()
|
| Constructors in com.healthmarketscience.jackcess.impl.query with parameters of type Row | |
|---|---|
QueryImpl.Row(Row tableRow)
|
|
| Uses of Row in com.healthmarketscience.jackcess.util |
|---|
| Methods in com.healthmarketscience.jackcess.util that return Row | |
|---|---|
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. |
| Methods in com.healthmarketscience.jackcess.util that return types with arguments of type Row | |
|---|---|
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. |
Iterator<Row> |
IterableBuilder.iterator()
|
Iterator<Row> |
EntryIterableBuilder.iterator()
|
| Methods in com.healthmarketscience.jackcess.util with parameters of type Row | |
|---|---|
abstract boolean |
RowFilter.matches(Row row)
Returns true if the given table row matches the Filter criteria,
false otherwise. |
| Method parameters in com.healthmarketscience.jackcess.util with type arguments of type Row | |
|---|---|
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. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||