| Package | Description |
|---|---|
| org.bytedeco.arrow | |
| org.bytedeco.arrow_dataset | |
| org.bytedeco.arrow_flight | |
| org.bytedeco.arrow.global | |
| org.bytedeco.parquet |
| Modifier and Type | Method and Description |
|---|---|
Table |
TableResult.access() |
Table[] |
TableVector.get() |
Table |
TableVector.Iterator.get() |
Table |
TableVector.get(long i) |
static Table |
Table.Make(Schema schema,
ArrayVector arrays) |
static Table |
Table.Make(Schema schema,
ArrayVector arrays,
long num_rows)
\brief Construct a Table from schema and arrays
|
static Table |
Table.Make(Schema schema,
ChunkedArrayVector columns) |
static Table |
Table.Make(Schema schema,
ChunkedArrayVector columns,
long num_rows)
\brief Construct a Table from schema and columns
If columns is zero-length, the table's number of rows is zero
|
Table |
TableResult.MoveValueUnsafe() |
Table |
TableResult.multiply() |
Table |
TableVector.pop_back() |
Table |
Table.ReplaceSchemaMetadata(KeyValueMetadata metadata)
\brief Replace schema key-value metadata with new metadata (EXPERIMENTAL)
|
Table |
Table.Slice(long offset)
\brief Slice from first row at offset until end of the table
|
Table |
Table.Slice(long offset,
long length)
\brief Construct a zero-copy slice of the table with the
indicated offset and length
|
Table |
Datum.table() |
Table |
TableResult.ValueOrDie()
Gets a mutable reference to the stored
T value. |
Table |
TableResult.ValueUnsafe()
Cast the internally stored value to produce a new result or propagate the stored
error.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
Table.Equals(Table other) |
boolean |
Table.Equals(Table other,
boolean check_metadata)
\brief Determine if tables are equal
Two tables can be equal only if they have equal schemas.
|
TableVector.Iterator |
TableVector.insert(TableVector.Iterator pos,
Table value) |
TableVector |
TableVector.push_back(Table value) |
TableVector |
TableVector.put(long i,
Table value) |
TableVector |
TableVector.put(Table... array) |
TableVector |
TableVector.put(Table value) |
Status |
Reader.Read(int[] indices,
Table out) |
Status |
Reader.Read(IntBuffer indices,
Table out) |
Status |
Reader.Read(IntPointer indices,
Table out)
\brief Read only the specified columns from the file as an arrow::Table.
|
Status |
Reader.Read(StringVector names,
Table out)
\brief Read only the specified columns from the file as an arrow::Table.
|
Status |
Reader.Read(Table out)
\brief Read all columns from the file as an arrow::Table.
|
Status |
RecordBatchReader.ReadAll(Table table)
\brief Read all batches and concatenate as arrow::Table
|
static TableResult |
DictionaryUnifier.UnifyTable(Table table) |
static TableResult |
DictionaryUnifier.UnifyTable(Table table,
MemoryPool pool)
\brief Unify dictionaries accross the chunks of each table column
The dictionaries in each table column will be unified, their indices
accordingly transposed.
|
Status |
RecordBatchWriter.WriteTable(Table table)
\brief Write possibly-chunked table by creating sequence of record batches
|
Status |
RecordBatchWriter.WriteTable(Table table,
long max_chunksize)
\brief Write Table with a particular chunksize
|
| Constructor and Description |
|---|
Datum(Table value) |
TableBatchReader(Table table)
\brief Construct a TableBatchReader for the given table
|
TableFuture(Table val)
\brief Implicit constructor to create a finished future from a value
|
TableResult(Table value)
Constructs a Result object that contains
value. |
TableVector(Table... array) |
TableVector(Table value) |
| Constructor and Description |
|---|
InMemoryDataset(Table table)
Convenience constructor taking a Table
|
| Modifier and Type | Method and Description |
|---|---|
Status |
MetadataRecordBatchReader.ReadAll(Table table)
\brief Consume entire stream as a Table
|
| Modifier and Type | Method and Description |
|---|---|
static Status |
arrow.PrettyPrint(Table table,
PrettyPrintOptions options,
Pointer sink)
\brief Print human-readable representation of Table
|
static TableResult |
arrow.PromoteTableToSchema(Table table,
Schema schema) |
static TableResult |
arrow.PromoteTableToSchema(Table table,
Schema schema,
MemoryPool pool)
\brief Promotes a table to conform to the given schema.
|
static TableResult |
arrow.Take(Table table,
Array indices)
Deprecated.
|
static TableResult |
arrow.Take(Table table,
Array indices,
TakeOptions options,
ExecContext context)
Deprecated.
|
static TableResult |
arrow.Take(Table table,
ChunkedArray indices)
Deprecated.
|
static TableResult |
arrow.Take(Table table,
ChunkedArray indices,
TakeOptions options,
ExecContext context)
Deprecated.
|
static Status |
parquet.WriteTable(Table table,
MemoryPool pool,
OutputStream sink,
long chunk_size) |
static Status |
parquet.WriteTable(Table table,
MemoryPool pool,
OutputStream sink,
long chunk_size,
WriterProperties properties,
ArrowWriterProperties arrow_properties)
\brief Write a Table to Parquet.
|
static Status |
arrow.WriteTable(Table table,
OutputStream dst) |
static Status |
arrow.WriteTable(Table table,
OutputStream dst,
WriteProperties properties) |
| Modifier and Type | Method and Description |
|---|---|
Status |
FileReader.ReadRowGroup(int i,
int[] column_indices,
Table out) |
Status |
FileReader.ReadRowGroup(int i,
IntBuffer column_indices,
Table out) |
Status |
FileReader.ReadRowGroup(int i,
IntPointer column_indices,
Table out) |
Status |
FileReader.ReadRowGroup(int i,
Table out) |
Status |
FileReader.ReadRowGroups(int[] row_groups,
int[] column_indices,
Table out) |
Status |
FileReader.ReadRowGroups(int[] row_groups,
Table out) |
Status |
FileReader.ReadRowGroups(IntBuffer row_groups,
IntBuffer column_indices,
Table out) |
Status |
FileReader.ReadRowGroups(IntBuffer row_groups,
Table out) |
Status |
FileReader.ReadRowGroups(IntPointer row_groups,
IntPointer column_indices,
Table out) |
Status |
FileReader.ReadRowGroups(IntPointer row_groups,
Table out) |
Status |
FileReader.ReadTable(int[] column_indices,
Table out) |
Status |
FileReader.ReadTable(IntBuffer column_indices,
Table out) |
Status |
FileReader.ReadTable(IntPointer column_indices,
Table out)
\brief Read the given columns into a Table
The indicated column indices are relative to the schema
|
Status |
FileReader.ReadTable(Table out)
Read all columns into a Table
|
Status |
FileWriter.WriteTable(Table table,
long chunk_size)
\brief Write a Table to Parquet.
|
Copyright © 2021. All rights reserved.