Uses of Class
org.apache.parquet.column.values.ValuesWriter
-
-
Uses of ValuesWriter in org.apache.parquet.column
Methods in org.apache.parquet.column that return ValuesWriter Modifier and Type Method Description ValuesWriterParquetProperties. newDefinitionLevelWriter(ColumnDescriptor path)ValuesWriterParquetProperties. newRepetitionLevelWriter(ColumnDescriptor path)ValuesWriterParquetProperties. newValuesWriter(ColumnDescriptor path) -
Uses of ValuesWriter in org.apache.parquet.column.values
Methods in org.apache.parquet.column.values with parameters of type ValuesWriter Modifier and Type Method Description voidRequiresFallback. fallBackAllValuesTo(ValuesWriter writer)When falling back to a different encoding we must re-encode all the values seen so far -
Uses of ValuesWriter in org.apache.parquet.column.values.bitpacking
Subclasses of ValuesWriter in org.apache.parquet.column.values.bitpacking Modifier and Type Class Description classBitPackingValuesWritera column writer that packs the ints in the number of bits required based on the maximum size.classByteBitPackingValuesWriterclassDevNullValuesWriterThis is a special writer that doesn't write anything. -
Uses of ValuesWriter in org.apache.parquet.column.values.bytestreamsplit
Subclasses of ValuesWriter in org.apache.parquet.column.values.bytestreamsplit Modifier and Type Class Description classByteStreamSplitValuesWriterstatic classByteStreamSplitValuesWriter.DoubleByteStreamSplitValuesWriterstatic classByteStreamSplitValuesWriter.FloatByteStreamSplitValuesWriter -
Uses of ValuesWriter in org.apache.parquet.column.values.delta
Subclasses of ValuesWriter in org.apache.parquet.column.values.delta Modifier and Type Class Description classDeltaBinaryPackingValuesWriterWrite integers with delta encoding and binary packing The format is as follows:classDeltaBinaryPackingValuesWriterForIntegerWrite integers (INT32) with delta encoding and binary packing.classDeltaBinaryPackingValuesWriterForLongWrite longs (INT64) with delta encoding and binary packing. -
Uses of ValuesWriter in org.apache.parquet.column.values.deltalengthbytearray
Subclasses of ValuesWriter in org.apache.parquet.column.values.deltalengthbytearray Modifier and Type Class Description classDeltaLengthByteArrayValuesWriterWrite lengths of byte-arrays using delta encoding, followed by concatenated byte-arrays -
Uses of ValuesWriter in org.apache.parquet.column.values.deltastrings
Subclasses of ValuesWriter in org.apache.parquet.column.values.deltastrings Modifier and Type Class Description classDeltaByteArrayWriterWrite prefix lengths using delta encoding, followed by suffixes with Delta length byte arrays -
Uses of ValuesWriter in org.apache.parquet.column.values.dictionary
Subclasses of ValuesWriter in org.apache.parquet.column.values.dictionary Modifier and Type Class Description classDictionaryValuesWriterWill attempt to encode values using a dictionary and fall back to plain encoding if the dictionary gets too bigstatic classDictionaryValuesWriter.PlainBinaryDictionaryValuesWriterstatic classDictionaryValuesWriter.PlainDoubleDictionaryValuesWriterstatic classDictionaryValuesWriter.PlainFixedLenArrayDictionaryValuesWriterstatic classDictionaryValuesWriter.PlainFloatDictionaryValuesWriterstatic classDictionaryValuesWriter.PlainIntegerDictionaryValuesWriterstatic classDictionaryValuesWriter.PlainLongDictionaryValuesWriterMethods in org.apache.parquet.column.values.dictionary with parameters of type ValuesWriter Modifier and Type Method Description protected DictionaryPageDictionaryValuesWriter. dictPage(ValuesWriter dictPageWriter)voidDictionaryValuesWriter. fallBackAllValuesTo(ValuesWriter writer)protected abstract voidDictionaryValuesWriter. fallBackDictionaryEncodedData(ValuesWriter writer)voidDictionaryValuesWriter.PlainBinaryDictionaryValuesWriter. fallBackDictionaryEncodedData(ValuesWriter writer)voidDictionaryValuesWriter.PlainDoubleDictionaryValuesWriter. fallBackDictionaryEncodedData(ValuesWriter writer)voidDictionaryValuesWriter.PlainFloatDictionaryValuesWriter. fallBackDictionaryEncodedData(ValuesWriter writer)voidDictionaryValuesWriter.PlainIntegerDictionaryValuesWriter. fallBackDictionaryEncodedData(ValuesWriter writer)voidDictionaryValuesWriter.PlainLongDictionaryValuesWriter. fallBackDictionaryEncodedData(ValuesWriter writer) -
Uses of ValuesWriter in org.apache.parquet.column.values.factory
Methods in org.apache.parquet.column.values.factory that return ValuesWriter Modifier and Type Method Description ValuesWriterDefaultV1ValuesWriterFactory. newValuesWriter(ColumnDescriptor descriptor)ValuesWriterDefaultV2ValuesWriterFactory. newValuesWriter(ColumnDescriptor descriptor)ValuesWriterDefaultValuesWriterFactory. newValuesWriter(ColumnDescriptor descriptor)ValuesWriterValuesWriterFactory. newValuesWriter(ColumnDescriptor descriptor)Creates a ValuesWriter to write values for the given column. -
Uses of ValuesWriter in org.apache.parquet.column.values.fallback
Classes in org.apache.parquet.column.values.fallback with type parameters of type ValuesWriter Modifier and Type Class Description classFallbackValuesWriter<I extends ValuesWriter & RequiresFallback,F extends ValuesWriter>classFallbackValuesWriter<I extends ValuesWriter & RequiresFallback,F extends ValuesWriter>Subclasses of ValuesWriter in org.apache.parquet.column.values.fallback Modifier and Type Class Description classFallbackValuesWriter<I extends ValuesWriter & RequiresFallback,F extends ValuesWriter>Fields in org.apache.parquet.column.values.fallback declared as ValuesWriter Modifier and Type Field Description FFallbackValuesWriter. fallBackWriterfallbackIFallbackValuesWriter. initialWriterwriter to start withMethods in org.apache.parquet.column.values.fallback with type parameters of type ValuesWriter Modifier and Type Method Description static <I extends ValuesWriter & RequiresFallback,F extends ValuesWriter>
FallbackValuesWriter<I,F>FallbackValuesWriter. of(I initialWriter, F fallBackWriter)static <I extends ValuesWriter & RequiresFallback,F extends ValuesWriter>
FallbackValuesWriter<I,F>FallbackValuesWriter. of(I initialWriter, F fallBackWriter) -
Uses of ValuesWriter in org.apache.parquet.column.values.plain
Subclasses of ValuesWriter in org.apache.parquet.column.values.plain Modifier and Type Class Description classBooleanPlainValuesWriterAn implementation of the PLAIN encodingclassFixedLenByteArrayPlainValuesWriterValuesWriter for FIXED_LEN_BYTE_ARRAY.classPlainValuesWriterPlain encoding except for booleans -
Uses of ValuesWriter in org.apache.parquet.column.values.rle
Subclasses of ValuesWriter in org.apache.parquet.column.values.rle Modifier and Type Class Description classRunLengthBitPackingHybridValuesWriter
-