| Package | Description |
|---|---|
| tech.bitey.dataframe |
| Modifier and Type | Method and Description |
|---|---|
IntColumn |
IntColumn.append(Column<Integer> tail) |
IntColumn |
IntColumn.copy() |
IntColumn |
DataFrame.deriveColumn(ToIntFunction<Row> function)
Derive a new
IntColumn from the rows of this dataframe. |
IntColumn |
IntColumn.head(Integer toElement) |
IntColumn |
IntColumn.head(Integer toElement,
boolean inclusive) |
IntColumn |
DataFrame.intColumn(int columnIndex)
Returns the
IntColumn at the specified index. |
IntColumn |
DataFrame.intColumn(String columnName)
Returns the specified
IntColumn |
static IntColumn |
IntColumn.of(Integer... elements)
Returns a new
IntColumn containing the specified elements. |
IntColumn |
IntColumn.subColumn(int fromIndex,
int toIndex) |
IntColumn |
IntColumn.subColumnByValue(Integer fromElement,
boolean fromInclusive,
Integer toElement,
boolean toInclusive) |
IntColumn |
IntColumn.subColumnByValue(Integer fromElement,
Integer toElement) |
IntColumn |
IntColumn.tail(Integer fromElement) |
IntColumn |
IntColumn.tail(Integer fromElement,
boolean inclusive) |
IntColumn |
IntColumn.toDistinct() |
IntColumn |
IntColumn.toHeap() |
IntColumn |
IntColumn.toSorted() |
| Modifier and Type | Method and Description |
|---|---|
static Collector<Integer,?,IntColumn> |
IntColumn.collector()
Collects a stream of
Integers into a new IntColumn. |
static Collector<Integer,?,IntColumn> |
IntColumn.collector(int characteristic)
Collects a stream of
Integers into a new IntColumn with the
specified characteristic. |
Copyright © 2020. All rights reserved.