Package org.apache.parquet.column.page
Interface PageReader
-
public interface PageReaderReader for a sequence a page from a given column chunk
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetTotalValueCount()DictionaryPagereadDictionaryPage()DataPagereadPage()
-
-
-
Method Detail
-
readDictionaryPage
DictionaryPage readDictionaryPage()
- Returns:
- the dictionary page in that chunk or null if none
-
getTotalValueCount
long getTotalValueCount()
- Returns:
- the total number of values in the column chunk
-
readPage
DataPage readPage()
- Returns:
- the next page in that chunk or null if after the last page
-
-