| Package | Description |
|---|---|
| cn.sissors.hummingbird.collect | |
| cn.sissors.hummingbird.collect.container |
| Modifier and Type | Method and Description |
|---|---|
TableContainer<R,C,V> |
TableContainer.clean()
Clean all content in the container.
|
TableContainer<R,C,V> |
TableContainer.clone() |
TableContainer<R,C,V> |
TableContainer.filter(@Nullable Predicate<R> rowFilter,
@Nullable Predicate<C> columnFilter)
Cut current container through filters.
|
abstract TableContainer<R,C,V> |
TableContainer.load(String path)
Load data from external storage into container.
|
TableContainer<R,C,V> |
TableContainer.merge(TableContainer<R,C,V> other)
Merge two containers into one and replaced the current.
|
TableContainer<R,C,V> |
TableContainer.push(R row,
C column,
V value)
Push a cell into container.
|
TableContainer<R,C,V> |
TableContainer.sort()
Sort current container based on the dictionary order of row and column keys.
|
| Modifier and Type | Method and Description |
|---|---|
TableContainer<R,C,V> |
TableContainer.merge(TableContainer<R,C,V> other)
Merge two containers into one and replaced the current.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BinaryTableContainer<R,C,V>
This class is an implementation for
TableContainer,
using Serializable to serialize and deserialize table container object. |
class |
CSVTableContainer<R,C,V>
The table container organized under csv format which can be persisted to a csv table and loaded data from csv file.
|
Copyright © 2019. All rights reserved.