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 ordered and if so, in which direction.ColumnIndexColumnIndex. setDefinition_level_histograms(List<Long> definition_level_histograms)Same as repetition_level_histograms except for definitions levels.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 determined by the ColumnOrder of the column.ColumnIndexColumnIndex. setNull_counts(List<Long> null_counts)A list containing the number of null values for each page Writers SHOULD always write this field even if no null values are present or the column is not nullable.ColumnIndexColumnIndex. setNull_pages(List<Boolean> null_pages)A list of Boolean values to determine the validity of the corresponding min and max values.ColumnIndexColumnIndex. setRepetition_level_histograms(List<Long> repetition_level_histograms)Contains repetition level histograms for each page concatenated together.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.
-