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