public interface VectorizedValuesReader
Modifier and Type | Interface and Description |
---|---|
static interface |
VectorizedValuesReader.ByteBufferOutputWriter
A functional interface to write double values to columnar output.
|
static interface |
VectorizedValuesReader.IntegerOutputWriter
A functional interface to write integer values to columnar output.
|
Modifier and Type | Method and Description |
---|---|
org.apache.parquet.io.api.Binary |
readBinary(int len) |
void |
readBinary(int total,
WritableBytesVector c,
int rowId) |
boolean |
readBoolean() |
void |
readBooleans(int total,
WritableBooleanVector c,
int rowId) |
byte |
readByte() |
void |
readBytes(int total,
WritableByteVector c,
int rowId) |
double |
readDouble() |
void |
readDoubles(int total,
WritableDoubleVector c,
int rowId) |
float |
readFloat() |
void |
readFloats(int total,
WritableFloatVector c,
int rowId) |
int |
readInteger() |
void |
readIntegers(int total,
WritableIntVector c,
int rowId) |
long |
readLong() |
void |
readLongs(int total,
WritableLongVector c,
int rowId) |
short |
readShort() |
void |
readShorts(int total,
WritableShortVector c,
int rowId) |
void |
skipBinary(int total) |
void |
skipBooleans(int total) |
void |
skipBytes(int total) |
void |
skipDoubles(int total) |
void |
skipFixedLenByteArray(int total,
int len) |
void |
skipFloats(int total) |
void |
skipIntegers(int total) |
void |
skipLongs(int total) |
void |
skipShorts(int total) |
boolean readBoolean()
byte readByte()
short readShort()
int readInteger()
long readLong()
float readFloat()
double readDouble()
org.apache.parquet.io.api.Binary readBinary(int len)
void readBooleans(int total, WritableBooleanVector c, int rowId)
void readBytes(int total, WritableByteVector c, int rowId)
void readShorts(int total, WritableShortVector c, int rowId)
void readIntegers(int total, WritableIntVector c, int rowId)
void readLongs(int total, WritableLongVector c, int rowId)
void readFloats(int total, WritableFloatVector c, int rowId)
void readDoubles(int total, WritableDoubleVector c, int rowId)
void readBinary(int total, WritableBytesVector c, int rowId)
void skipBooleans(int total)
void skipBytes(int total)
void skipShorts(int total)
void skipIntegers(int total)
void skipLongs(int total)
void skipFloats(int total)
void skipDoubles(int total)
void skipBinary(int total)
void skipFixedLenByteArray(int total, int len)
Copyright © 2023–2025 The Apache Software Foundation. All rights reserved.