public interface ParquetDataColumnReader
Modifier and Type | Method and Description |
---|---|
org.apache.parquet.column.Dictionary |
getDictionary() |
void |
initFromPage(int valueCount,
org.apache.parquet.bytes.ByteBufferInputStream in)
Initialize the reader by page data.
|
boolean |
readBoolean() |
boolean |
readBoolean(int id) |
byte[] |
readBytes() |
byte[] |
readBytes(int id) |
double |
readDouble() |
double |
readDouble(int id) |
float |
readFloat() |
float |
readFloat(int id) |
int |
readInteger() |
int |
readInteger(int id) |
long |
readLong() |
long |
readLong(int id) |
int |
readSmallInt() |
int |
readSmallInt(int id) |
TimestampData |
readTimestamp() |
TimestampData |
readTimestamp(int id) |
int |
readTinyInt() |
int |
readTinyInt(int id) |
int |
readValueDictionaryId() |
void initFromPage(int valueCount, org.apache.parquet.bytes.ByteBufferInputStream in) throws IOException
valueCount
- value countin
- page dataIOException
int readValueDictionaryId()
boolean readBoolean()
int readTinyInt()
int readSmallInt()
int readInteger()
long readLong()
float readFloat()
double readDouble()
byte[] readBytes()
TimestampData readTimestamp()
org.apache.parquet.column.Dictionary getDictionary()
boolean readBoolean(int id)
id
- in dictionaryint readTinyInt(int id)
id
- in dictionaryint readSmallInt(int id)
id
- in dictionaryint readInteger(int id)
id
- in dictionarylong readLong(int id)
id
- in dictionaryfloat readFloat(int id)
id
- in dictionarydouble readDouble(int id)
id
- in dictionarybyte[] readBytes(int id)
id
- in dictionaryTimestampData readTimestamp(int id)
id
- in dictionaryCopyright © 2014–2024 The Apache Software Foundation. All rights reserved.