| Package | Description |
|---|---|
| tech.bitey.dataframe |
| Modifier and Type | Method and Description |
|---|---|
ByteColumn |
ByteColumn.append(Column<Byte> tail) |
ByteColumn |
ByteColumn.copy() |
ByteColumn |
ByteColumn.head(Byte toElement) |
ByteColumn |
ByteColumn.head(Byte toElement,
boolean inclusive) |
static ByteColumn |
ByteColumn.of(Byte... elements)
Returns a new
ByteColumn containing the specified elements. |
ByteColumn |
ByteColumn.subColumn(int fromIndex,
int toIndex) |
ByteColumn |
ByteColumn.subColumnByValue(Byte fromElement,
boolean fromInclusive,
Byte toElement,
boolean toInclusive) |
ByteColumn |
ByteColumn.subColumnByValue(Byte fromElement,
Byte toElement) |
ByteColumn |
ByteColumn.tail(Byte fromElement) |
ByteColumn |
ByteColumn.tail(Byte fromElement,
boolean inclusive) |
ByteColumn |
ByteColumn.toDistinct() |
ByteColumn |
ByteColumn.toHeap() |
ByteColumn |
ByteColumn.toSorted() |
ByteColumn |
EnumColumn.unwrap()
Returns the
ByteColumn containing the ordinal values. |
| Modifier and Type | Method and Description |
|---|---|
static Collector<Byte,?,ByteColumn> |
ByteColumn.collector()
Collects a stream of
Bytes into a new ByteColumn. |
static Collector<Byte,?,ByteColumn> |
ByteColumn.collector(int characteristic)
Collects a stream of
Bytes into a new ByteColumn with the
specified characteristic. |
| Modifier and Type | Method and Description |
|---|---|
static <T extends Enum<T>> |
EnumColumn.wrap(Class<T> enumType,
ByteColumn delegate)
Wraps the specified
ByteColumn, interpreting the byte values
as ordinals of the specified enum type. |
Copyright © 2020. All rights reserved.