| Package | Description |
|---|---|
| org.bytedeco.arrow | |
| org.bytedeco.arrow.global | |
| org.bytedeco.gandiva | |
| org.bytedeco.parquet |
| Modifier and Type | Method and Description |
|---|---|
ArrayVector |
ChunkedArray.chunks() |
ArrayVector[] |
ArrayVectorVector.get() |
ArrayVector |
ArrayVectorVector.Iterator.get() |
ArrayVector |
ArrayVectorVector.get(long i) |
ArrayVector |
ArrayVectorVector.pop_back() |
ArrayVector |
ArrayVector.push_back(Array value) |
ArrayVector |
ArrayVector.put(Array... array) |
ArrayVector |
ArrayVector.put(Array value) |
ArrayVector |
ArrayVector.put(ArrayVector x) |
ArrayVector |
ArrayVector.put(long i,
Array value) |
| Modifier and Type | Method and Description |
|---|---|
Status |
ChunkedStringBuilder.Finish(ArrayVector out) |
Status |
ChunkedBinaryBuilder.Finish(ArrayVector out) |
Status |
StructArray.Flatten(MemoryPool pool,
ArrayVector out)
\brief Flatten this array as a vector of arrays, one for each field
|
ArrayVectorVector.Iterator |
ArrayVectorVector.insert(ArrayVectorVector.Iterator pos,
ArrayVector value) |
static StructArrayResult |
StructArray.Make(ArrayVector children,
FieldVector fields) |
static StructArrayResult |
StructArray.Make(ArrayVector children,
FieldVector fields,
ArrowBuffer null_bitmap,
long null_count,
long offset)
\brief Return a StructArray from child arrays and fields.
|
static StructArrayResult |
StructArray.Make(ArrayVector children,
StringVector field_names) |
static StructArrayResult |
StructArray.Make(ArrayVector children,
StringVector field_names,
ArrowBuffer null_bitmap,
long null_count,
long offset)
\brief Return a StructArray from child arrays and field names.
|
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 RecordBatch |
RecordBatch.Make(Schema schema,
long num_rows,
ArrayVector columns) |
static Status |
UnionArray.MakeDense(Array type_ids,
Array value_offsets,
ArrayVector children,
Array out)
\brief Construct Dense UnionArray from types_ids, value_offsets and children
This function does the bare minimum of validation of the offsets and
input types.
|
static Status |
UnionArray.MakeDense(Array type_ids,
Array value_offsets,
ArrayVector children,
byte[] type_codes,
Array out) |
static Status |
UnionArray.MakeDense(Array type_ids,
Array value_offsets,
ArrayVector children,
ByteBuffer type_codes,
Array out) |
static Status |
UnionArray.MakeDense(Array type_ids,
Array value_offsets,
ArrayVector children,
BytePointer type_codes,
Array out)
\brief Construct Dense UnionArray from types_ids, value_offsets and children
This function does the bare minimum of validation of the offsets and
input types.
|
static Status |
UnionArray.MakeDense(Array type_ids,
Array value_offsets,
ArrayVector children,
StringVector field_names,
Array out)
\brief Construct Dense UnionArray from types_ids, value_offsets and children
This function does the bare minimum of validation of the offsets and
input types.
|
static Status |
UnionArray.MakeDense(Array type_ids,
Array value_offsets,
ArrayVector children,
StringVector field_names,
byte[] type_codes,
Array out) |
static Status |
UnionArray.MakeDense(Array type_ids,
Array value_offsets,
ArrayVector children,
StringVector field_names,
ByteBuffer type_codes,
Array out) |
static Status |
UnionArray.MakeDense(Array type_ids,
Array value_offsets,
ArrayVector children,
StringVector field_names,
BytePointer type_codes,
Array out)
\brief Construct Dense UnionArray from types_ids, value_offsets and children
This function does the bare minimum of validation of the offsets and
input types.
|
static Status |
UnionArray.MakeSparse(Array type_ids,
ArrayVector children,
Array out)
\brief Construct Sparse UnionArray from type_ids and children
This function does the bare minimum of validation of the offsets and
input types.
|
static Status |
UnionArray.MakeSparse(Array type_ids,
ArrayVector children,
byte[] type_codes,
Array out) |
static Status |
UnionArray.MakeSparse(Array type_ids,
ArrayVector children,
ByteBuffer type_codes,
Array out) |
static Status |
UnionArray.MakeSparse(Array type_ids,
ArrayVector children,
BytePointer type_codes,
Array out)
\brief Construct Sparse UnionArray from type_ids and children
This function does the bare minimum of validation of the offsets and
input types.
|
static Status |
UnionArray.MakeSparse(Array type_ids,
ArrayVector children,
StringVector field_names,
Array out)
\brief Construct Sparse UnionArray from type_ids and children
This function does the bare minimum of validation of the offsets and
input types.
|
static Status |
UnionArray.MakeSparse(Array type_ids,
ArrayVector children,
StringVector field_names,
byte[] type_codes,
Array out) |
static Status |
UnionArray.MakeSparse(Array type_ids,
ArrayVector children,
StringVector field_names,
ByteBuffer type_codes,
Array out) |
static Status |
UnionArray.MakeSparse(Array type_ids,
ArrayVector children,
StringVector field_names,
BytePointer type_codes,
Array out)
\brief Construct Sparse UnionArray from type_ids and children
This function does the bare minimum of validation of the offsets and
input types.
|
ArrayVectorVector |
ArrayVectorVector.push_back(ArrayVector value) |
ArrayVectorVector |
ArrayVectorVector.put(ArrayVector... array) |
ArrayVectorVector |
ArrayVectorVector.put(ArrayVector value) |
ArrayVector |
ArrayVector.put(ArrayVector x) |
ArrayVectorVector |
ArrayVectorVector.put(long i,
ArrayVector value) |
| Constructor and Description |
|---|
ArrayVectorVector(ArrayVector... array) |
ArrayVectorVector(ArrayVector value) |
ChunkedArray(ArrayVector chunks)
\brief Construct a chunked array from a vector of arrays
The vector must be non-empty and all its elements must have the same
data type.
|
ChunkedArray(ArrayVector chunks,
DataType type)
\brief Construct a chunked array from a vector of arrays and a data type
As the data type is passed explicitly, the vector may be empty.
|
StructArray(DataType type,
long length,
ArrayVector children) |
StructArray(DataType type,
long length,
ArrayVector children,
ArrowBuffer null_bitmap,
long null_count,
long offset) |
UnionArray(DataType type,
long length,
ArrayVector children,
ArrowBuffer type_ids) |
UnionArray(DataType type,
long length,
ArrayVector children,
ArrowBuffer type_ids,
ArrowBuffer value_offsets,
ArrowBuffer null_bitmap,
long null_count,
long offset) |
| Modifier and Type | Method and Description |
|---|---|
static Status |
arrow.Concatenate(ArrayVector arrays,
MemoryPool pool,
Array out)
\brief Concatenate arrays
|
static DataType |
arrow.union_(ArrayVector children) |
static DataType |
arrow.union_(ArrayVector children,
int mode) |
static DataType |
arrow.union_(ArrayVector children,
StringVector field_names) |
static DataType |
arrow.union_(ArrayVector children,
StringVector field_names,
byte[] type_codes) |
static DataType |
arrow.union_(ArrayVector children,
StringVector field_names,
byte[] type_codes,
int mode) |
static DataType |
arrow.union_(ArrayVector children,
StringVector field_names,
byte[] type_codes,
UnionMode.type mode) |
static DataType |
arrow.union_(ArrayVector children,
StringVector field_names,
ByteBuffer type_codes) |
static DataType |
arrow.union_(ArrayVector children,
StringVector field_names,
ByteBuffer type_codes,
int mode) |
static DataType |
arrow.union_(ArrayVector children,
StringVector field_names,
ByteBuffer type_codes,
UnionMode.type mode) |
static DataType |
arrow.union_(ArrayVector children,
StringVector field_names,
BytePointer type_codes) |
static DataType |
arrow.union_(ArrayVector children,
StringVector field_names,
BytePointer type_codes,
int mode) |
static DataType |
arrow.union_(ArrayVector children,
StringVector field_names,
BytePointer type_codes,
UnionMode.type mode)
\brief Create a UnionType instance
|
static DataType |
arrow.union_(ArrayVector children,
StringVector field_names,
int mode) |
static DataType |
arrow.union_(ArrayVector children,
StringVector field_names,
UnionMode.type mode)
\brief Create a UnionType instance
|
static DataType |
arrow.union_(ArrayVector children,
UnionMode.type mode)
\brief Create a UnionType instance
|
| Modifier and Type | Method and Description |
|---|---|
Status |
Projector.Evaluate(RecordBatch batch,
MemoryPool pool,
ArrayVector output)
Evaluate the specified record batch, and return the allocated and populated output
arrays.
|
Status |
Projector.Evaluate(RecordBatch batch,
SelectionVector selection_vector,
MemoryPool pool,
ArrayVector output)
Evaluate the specified record batch, and return the allocated and populated output
arrays.
|
| Modifier and Type | Method and Description |
|---|---|
ArrayVector |
BinaryRecordReader.GetBuilderChunks() |
Copyright © 2020. All rights reserved.