- BitPacking - Class in org.apache.parquet.column.values.bitpacking
-
provides the correct implementation of a bitpacking based on the width in bits
- BitPacking.BitPackingReader - Class in org.apache.parquet.column.values.bitpacking
-
to read back what has been written with the corresponding writer
- BitPacking.BitPackingWriter - Class in org.apache.parquet.column.values.bitpacking
-
to writes ints to a stream packed to only the needed bits.
- BitPackingReader() - Constructor for class org.apache.parquet.column.values.bitpacking.BitPacking.BitPackingReader
-
- BitPackingWriter() - Constructor for class org.apache.parquet.column.values.bitpacking.BitPacking.BitPackingWriter
-
- ByteBasedBitPackingEncoder - Class in org.apache.parquet.column.values.bitpacking
-
Uses the generated Byte based bit packing to write ints into a BytesInput
- ByteBasedBitPackingEncoder(int, Packer) - Constructor for class org.apache.parquet.column.values.bitpacking.ByteBasedBitPackingEncoder
-
- ByteBitPackingBE - Class in org.apache.parquet.column.values.bitpacking
-
Packs from the Most Significant Bit first
See ByteBasedBitPackingGenerator to make changes to this file
Automatically generated
- ByteBitPackingBE() - Constructor for class org.apache.parquet.column.values.bitpacking.ByteBitPackingBE
-
- ByteBitPackingForLongBE - Class in org.apache.parquet.column.values.bitpacking
-
Packs from the Most Significant Bit first
See ByteBasedBitPackingGenerator to make changes to this file
Automatically generated
- ByteBitPackingForLongBE() - Constructor for class org.apache.parquet.column.values.bitpacking.ByteBitPackingForLongBE
-
- ByteBitPackingForLongLE - Class in org.apache.parquet.column.values.bitpacking
-
Packs from the Least Significant Bit first
See ByteBasedBitPackingGenerator to make changes to this file
Automatically generated
- ByteBitPackingForLongLE() - Constructor for class org.apache.parquet.column.values.bitpacking.ByteBitPackingForLongLE
-
- ByteBitPackingLE - Class in org.apache.parquet.column.values.bitpacking
-
Packs from the Least Significant Bit first
See ByteBasedBitPackingGenerator to make changes to this file
Automatically generated
- ByteBitPackingLE() - Constructor for class org.apache.parquet.column.values.bitpacking.ByteBitPackingLE
-
- BytePacker - Class in org.apache.parquet.column.values.bitpacking
-
Packs and unpacks into bytes
packing unpacking treats:
- n values at a time (with n % 8 == 0)
- bitWidth * (n/8) bytes at a time.
- BytePackerFactory - Interface in org.apache.parquet.column.values.bitpacking
-
- BytePackerForLong - Class in org.apache.parquet.column.values.bitpacking
-
Packs and unpacks INT64 into bytes
packing unpacking treats: - n values at a time (with n % 8 == 0) - bitWidth * (n/8) bytes at a
time.
- BytePackerForLongFactory - Interface in org.apache.parquet.column.values.bitpacking
-