| Modifier and Type | Class and Description |
|---|---|
class |
BaseFixedWidthVector
BaseFixedWidthVector provides an abstract interface for
implementing vectors of fixed width values.
|
class |
BaseVariableWidthVector |
class |
BigIntVector
BigIntVector implements a fixed width vector (8 bytes) of
integer values which could be null.
|
class |
BitVector
BitVector implements a fixed width (1 bit) vector of
boolean values which could be null.
|
class |
DateDayVector
DateDayVector implements a fixed width (4 bytes) vector of
date values which could be null.
|
class |
DateMilliVector
DateMilliVector implements a fixed width vector (8 bytes) of
date values which could be null.
|
class |
DecimalVector
DecimalVector implements a fixed width vector (16 bytes) of
decimal values which could be null.
|
class |
Float4Vector
Float4Vector implements a fixed width vector (4 bytes) of
float values which could be null.
|
class |
Float8Vector
Float8Vector implements a fixed width vector (8 bytes) of
double values which could be null.
|
class |
IntervalDayVector
IntervalDayVector implements a fixed width vector (8 bytes) of
interval (days and milliseconds) values which could be null.
|
class |
IntervalYearVector
IntervalYearVector implements a fixed width (4 bytes) vector of
interval (years and months) values which could be null.
|
class |
IntVector
IntVector implements a fixed width (4 bytes) vector of
integer values which could be null.
|
class |
SmallIntVector
SmallIntVector implements a fixed width (2 bytes) vector of
short values which could be null.
|
class |
TimeMicroVector
TimeMicroVector implements a fixed width vector (8 bytes) of
time (microsecond resolution) values which could be null.
|
class |
TimeMilliVector
TimeMilliVector implements a fixed width (4 bytes) vector of
time (millisecond resolution) values which could be null.
|
class |
TimeNanoVector
TimeNanoVector implements a fixed width vector (8 bytes) of
time (nanosecond resolution) values which could be null.
|
class |
TimeSecVector
TimeSecVector implements a fixed width (4 bytes) vector of
time (seconds resolution) values which could be null.
|
class |
TimeStampMicroTZVector
TimeStampMicroTZVector implements a fixed width vector (8 bytes) of
timestamp (microsecond resolution) values which could be null.
|
class |
TimeStampMicroVector
TimeStampMicroVector implements a fixed width vector (8 bytes) of
timestamp (microsecond resolution) values which could be null.
|
class |
TimeStampMilliTZVector
TimeStampMilliTZVector implements a fixed width vector (8 bytes) of
timestamp (millisecond resolution) values which could be null.
|
class |
TimeStampMilliVector
TimeStampMilliVector implements a fixed width vector (8 bytes) of
timestamp (millisecond resolution) values which could be null.
|
class |
TimeStampNanoTZVector
TimeStampNanoTZVector implements a fixed width vector (8 bytes) of
timestamp (nanosecond resolution) values which could be null.
|
class |
TimeStampNanoVector
TimeStampNanoVector implements a fixed width vector (8 bytes) of
timestamp (nanosecond resolution) values which could be null.
|
class |
TimeStampSecTZVector
TimeStampSecTZVector implements a fixed width vector (8 bytes) of
timestamp (seconds resolution) values which could be null.
|
class |
TimeStampSecVector
TimeStampSecVector implements a fixed width vector (8 bytes) of
timestamp (seconds resolution) values which could be null.
|
class |
TimeStampVector
TimeStampVector is an abstract interface for fixed width vector (8 bytes)
of timestamp values which could be null.
|
class |
TinyIntVector
TinyIntVector implements a fixed width (1 bytes) vector of
byte values which could be null.
|
class |
UInt1Vector
UInt1Vector implements a fixed width (1 bytes) vector of
integer values which could be null.
|
class |
UInt2Vector
UInt2Vector implements a fixed width (2 bytes) vector of
integer values which could be null.
|
class |
UInt4Vector
UInt4Vector implements a fixed width (4 bytes) vector of
integer values which could be null.
|
class |
UInt8Vector
UInt8Vector implements a fixed width vector (8 bytes) of
integer values which could be null.
|
class |
VarBinaryVector
VarBinaryVector implements a variable width vector of binary
values which could be NULL.
|
class |
VarCharVector
VarCharVector implements a variable width vector of VARCHAR
values which could be NULL.
|
class |
ZeroVector |
| Modifier and Type | Method and Description |
|---|---|
FieldVector |
VectorSchemaRoot.getVector(String name) |
| Modifier and Type | Method and Description |
|---|---|
List<FieldVector> |
ZeroVector.getChildrenFromFields() |
List<FieldVector> |
FieldVector.getChildrenFromFields()
the returned list is the same size as the list passed to initializeChildrenFromFields
|
List<FieldVector> |
BaseVariableWidthVector.getChildrenFromFields()
Get the inner child vectors.
|
List<FieldVector> |
BaseFixedWidthVector.getChildrenFromFields()
Get the inner child vectors.
|
List<FieldVector> |
VectorSchemaRoot.getFieldVectors() |
| Constructor and Description |
|---|
VectorSchemaRoot(FieldVector parent) |
| Constructor and Description |
|---|
VectorSchemaRoot(List<Field> fields,
List<FieldVector> fieldVectors,
int rowCount) |
VectorSchemaRoot(Schema schema,
List<FieldVector> fieldVectors,
int rowCount) |
| Modifier and Type | Class and Description |
|---|---|
class |
FixedSizeListVector |
class |
ListVector |
class |
NullableMapVector |
class |
UnionVector |
| Modifier and Type | Field and Description |
|---|---|
static FieldVector |
BaseRepeatedValueVector.DEFAULT_DATA_VECTOR |
protected FieldVector |
BaseRepeatedValueVector.vector |
| Modifier and Type | Method and Description |
|---|---|
abstract <T extends FieldVector> |
AbstractContainerVector.addOrGet(String name,
FieldType fieldType,
Class<T> clazz) |
<T extends FieldVector> |
AbstractMapVector.addOrGet(String childName,
FieldType fieldType,
Class<T> clazz)
Adds a new field with the given parameters or replaces the existing one and consequently returns the resultant
ValueVector. |
abstract <T extends FieldVector> |
AbstractContainerVector.getChild(String name,
Class<T> clazz) |
<T extends FieldVector> |
AbstractMapVector.getChild(String name,
Class<T> clazz)
Returns a
ValueVector instance of subtype of T corresponding to the given
field name if exists or null. |
| Modifier and Type | Method and Description |
|---|---|
FieldVector |
UnionVector.addVector(FieldVector v) |
FieldVector |
AbstractContainerVector.getChild(String name)
Returns a
ValueVector corresponding to the given field name if exists or null. |
FieldVector |
ListVector.getDataVector()
Get the inner data vector for this list vector
|
FieldVector |
FixedSizeListVector.getDataVector() |
FieldVector |
BaseRepeatedValueVector.getDataVector() |
| Modifier and Type | Method and Description |
|---|---|
protected List<FieldVector> |
AbstractMapVector.getChildren() |
List<FieldVector> |
UnionVector.getChildrenFromFields() |
List<FieldVector> |
ListVector.getChildrenFromFields() |
List<FieldVector> |
FixedSizeListVector.getChildrenFromFields() |
List<FieldVector> |
MapVector.getChildrenFromFields() |
| Modifier and Type | Method and Description |
|---|---|
FieldVector |
UnionVector.addVector(FieldVector v) |
protected void |
AbstractMapVector.putChild(String name,
FieldVector vector)
Inserts the vector with the given name if it does not exist else replaces it with the new value.
|
protected void |
AbstractMapVector.putVector(String name,
FieldVector vector)
Inserts the input vector into the map if it does not exist, replaces if it exists already
|
protected void |
BaseRepeatedValueVector.replaceDataVector(FieldVector v) |
| Constructor and Description |
|---|
BaseRepeatedValueVector(String name,
BufferAllocator allocator,
FieldVector vector,
CallBack callBack) |
| Modifier and Type | Method and Description |
|---|---|
FieldVector |
Dictionary.getVector() |
| Constructor and Description |
|---|
Dictionary(FieldVector dictionary,
DictionaryEncoding encoding) |
| Modifier and Type | Method and Description |
|---|---|
abstract FieldVector |
Types.MinorType.getNewVector(String name,
FieldType fieldType,
BufferAllocator allocator,
CallBack schemaChangeCallback) |
| Modifier and Type | Method and Description |
|---|---|
FieldVector |
FieldType.createNewSingleVector(String name,
BufferAllocator allocator,
CallBack schemaCallBack) |
FieldVector |
Field.createVector(BufferAllocator allocator) |
| Modifier and Type | Method and Description |
|---|---|
static void |
Validator.compareFieldVectors(FieldVector vector1,
FieldVector vector2)
Validate two arrow FieldVectors are equal.
|
Copyright © 2017 The Apache Software Foundation. All rights reserved.