Uses of Class
org.apache.parquet.format.ColumnIndex
-
Packages that use ColumnIndex Package Description org.apache.parquet.format -
-
Uses of ColumnIndex in org.apache.parquet.format
Methods in org.apache.parquet.format that return ColumnIndex Modifier and Type Method Description ColumnIndexColumnIndex. deepCopy()static ColumnIndexUtil. readColumnIndex(InputStream from)static ColumnIndexUtil. readColumnIndex(InputStream from, BlockCipher.Decryptor decryptor, byte[] AAD)ColumnIndexColumnIndex. setBoundary_order(BoundaryOrder boundary_order)Stores whether both min_values and max_values are orderd and if so, in which direction.ColumnIndexColumnIndex. setMax_values(List<ByteBuffer> max_values)ColumnIndexColumnIndex. setMin_values(List<ByteBuffer> min_values)Two lists containing lower and upper bounds for the values of each page.ColumnIndexColumnIndex. setNull_counts(List<Long> null_counts)A list containing the number of null values for each page *ColumnIndexColumnIndex. setNull_pages(List<Boolean> null_pages)A list of Boolean values to determine the validity of the corresponding min and max values.Methods in org.apache.parquet.format with parameters of type ColumnIndex Modifier and Type Method Description intColumnIndex. compareTo(ColumnIndex other)booleanColumnIndex. equals(ColumnIndex that)static voidUtil. writeColumnIndex(ColumnIndex columnIndex, OutputStream to)static voidUtil. writeColumnIndex(ColumnIndex columnIndex, OutputStream to, BlockCipher.Encryptor encryptor, byte[] AAD)Constructors in org.apache.parquet.format with parameters of type ColumnIndex Constructor Description ColumnIndex(ColumnIndex other)Performs a deep copy on other.
-