| Package | Description |
|---|---|
| com.github.martincooper.datatable | |
| com.github.martincooper.datatable.sorting |
| Modifier and Type | Method and Description |
|---|---|
DataRow |
IBaseTable.row(Integer rowIdx)
Accessor to a specific row by index.
|
DataRow |
DataView.row(Integer rowIdx)
Accessor to a specific row by index.
|
DataRow |
DataTable.row(Integer rowIdx)
Accessor to a specific row by index.
|
| Modifier and Type | Method and Description |
|---|---|
static io.vavr.control.Try<DataRow> |
DataRow.build(DataTable table,
Integer rowIdx)
Builds an instance of a DataRow.
|
Iterator<DataRow> |
DataView.iterator()
Returns an iterator over elements of type DataRow.
|
Iterator<DataRow> |
DataTable.iterator()
Returns an iterator over elements of type DataRow.
|
| Modifier and Type | Method and Description |
|---|---|
static io.vavr.control.Try<DataView> |
DataView.build(DataTable table,
Iterable<DataRow> rows)
Builds an instance of a DataView.
|
static io.vavr.control.Try<DataRowCollection> |
DataRowCollection.build(DataTable table,
Iterable<DataRow> rows)
Builds a new DataRowCollection for the specified DataTable.
|
DataView |
DataTable.filter(Predicate<DataRow> predicate)
Filters the row data using the specified predicate,
returning the results as a DataView over the original table.
|
| Modifier and Type | Method and Description |
|---|---|
int |
DataRowComparator.compare(DataRow rowOne,
DataRow rowTwo)
THe main compare method.
|
| Modifier and Type | Method and Description |
|---|---|
static io.vavr.control.Try<DataView> |
DataSort.quickSort(DataTable table,
io.vavr.collection.Seq<DataRow> rows,
io.vavr.collection.Seq<SortItem> sortItems)
Performs a quick sort on a DataTable given the specified parameters.
|
Copyright © 2017. All rights reserved.