| Modifier and Type | Method and Description |
|---|---|
DataRow |
DefaultDataFrame.getRow(int i) |
DataRow |
DataFrame.getRow(int i)
Returns the data row at a specified index
|
DataRow |
DefaultDataFrame.selectByPrimaryKey(Comparable... keyValues) |
DataRow |
DataFrame.selectByPrimaryKey(Comparable... keyValues)
Finds a data row using the primary key
|
DataRow |
DefaultDataFrame.selectFirst(FilterPredicate predicate) |
DataRow |
DataFrame.selectFirst(FilterPredicate predicate)
Returns the first found data row from this data frame matching an input predicate.
|
DataRow |
DefaultDataFrame.selectFirst(String predicateString) |
DataRow |
DataFrame.selectFirst(String predicateString)
Returns the first found data row from this data frame matching an input predicate.
|
DataRow |
DefaultDataFrame.selectFirst(String colName,
Comparable value) |
DataRow |
DataFrame.selectFirst(String colName,
Comparable value)
Returns the first found data row from this data frame where a specified column value equals
an input value.
|
DataRow |
DefaultDataFrame.selectFirstRowByIndex(String name,
Comparable... values) |
DataRow |
DataFrame.selectFirstRowByIndex(String name,
Comparable... values)
Finds the first data row matching an index and the corresponding index values
|
| Modifier and Type | Method and Description |
|---|---|
Iterator<DataRow> |
DefaultDataFrame.iterator() |
Iterable<? extends DataRow> |
DefaultDataFrame.rows() |
Iterable<? extends DataRow> |
DataFrame.rows()
Returns the indices of this data frame
|
| Modifier and Type | Method and Description |
|---|---|
DefaultDataFrame |
DefaultDataFrame.append(DataRow row) |
DataFrame |
DataFrame.append(DataRow row)
Appends a new data row.
|
DefaultDataFrame |
DefaultDataFrame.appendMatchingRow(DataRow row) |
DataFrame |
DataFrame.appendMatchingRow(DataRow row)
Appends a new data row.
|
T |
ColumnAppender.createRowValue(DataRow row)
Creates the value for a new column in a row
|
DefaultDataFrame |
DefaultDataFrame.update(DataRow dataRow) |
DataFrame |
DataFrame.update(DataRow dataRow)
Persists the updated values of a data row.
|
| Modifier and Type | Method and Description |
|---|---|
DefaultDataFrame |
DefaultDataFrame.sort(Comparator<DataRow> comp) |
DataFrame |
DataFrame.sort(Comparator<DataRow> comp)
Sorts the rows in this data frame using a custom
Comparator |
| Constructor and Description |
|---|
DataRows(DataFrame dataFrame,
List<DataRow> rows) |
| Modifier and Type | Class and Description |
|---|---|
class |
GroupRow
Created by algru on 11.06.2017.
|
| Modifier and Type | Method and Description |
|---|---|
DataGroup |
DataGrouping.getGroup(DataRow row) |
| Modifier and Type | Method and Description |
|---|---|
void |
TreeIndex.remove(DataRow dataRow) |
void |
Indices.remove(DataRow dataRow)
Removes a row from all indices
|
void |
Index.remove(DataRow dataRow)
removes a
DataRow from this index |
void |
TreeIndex.update(DataRow dataRow) |
void |
Indices.update(DataRow dataRow)
Updates a data row in all available indices
|
void |
Index.update(DataRow dataRow)
updates a
DataRow in this index |
void |
Indices.updateValue(DataFrameColumn column,
DataRow dataRow)
Updates the specified in each index that contains the specified column
|
| Modifier and Type | Method and Description |
|---|---|
void |
IntervalIndex.remove(DataRow dataRow) |
void |
IntervalIndex.update(DataRow dataRow) |
| Modifier and Type | Method and Description |
|---|---|
static void |
JoinOperationUtil.appendGroupJoinedRows(Collection<Integer> rowIndices,
DataFrame dfB,
DataRow rowA,
int[] joinIndicesA,
int[] joinIndicesB,
int joinedSize,
DataFrame joinedDataFrame)
Appends the joined rows resulting from a row from one data frame and a data group from the other data frame
|
static void |
JoinOperationUtil.fillValues(int[] joinIndices,
DataRow row,
Comparable<?>[] joinedRowValues)
Fills the values of a row into the corresponding values in a joined row value
|
| Modifier and Type | Method and Description |
|---|---|
int |
RowColumnComparator.compare(DataRow r1,
DataRow r2)
Compares two rows using the sort columns
|
Copyright © 2020. All rights reserved.