Uses of Enum Class
dev.hardwood.writer.ColumnEncoding
Packages that use ColumnEncoding
Package
Description
Parquet file writer, with a columnar and a row-oriented API over one core.
-
Uses of ColumnEncoding in dev.hardwood.writer
Subclasses with type arguments of type ColumnEncoding in dev.hardwood.writerModifier and TypeClassDescriptionenumHow a column's values are encoded, set file-wide or per leaf column throughWriterConfig.Builder.encoding(ColumnEncoding).Fields in dev.hardwood.writer declared as ColumnEncodingModifier and TypeFieldDescriptionstatic final ColumnEncodingWriterConfig.DEFAULT_ENCODINGDefault encoding policy:ColumnEncoding.AUTO, leaving each column chunk's encoding to the size comparison the writer makes once the row group is buffered.Methods in dev.hardwood.writer that return ColumnEncodingModifier and TypeMethodDescriptionWriterConfig.defaultEncoding()The encoding policy for columns with no override of their own.static ColumnEncodingReturns the enum constant of this class with the specified name.static ColumnEncoding[]ColumnEncoding.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in dev.hardwood.writer that return types with arguments of type ColumnEncodingModifier and TypeMethodDescriptionWriterConfig.columnEncodings()The per-column encoding policies, keyed by dotted leaf path.Methods in dev.hardwood.writer with parameters of type ColumnEncodingModifier and TypeMethodDescriptionWriterConfig.Builder.encoding(ColumnEncoding encoding) Sets the encoding policy for every column without an override of its own; must be non-null.WriterConfig.Builder.encoding(String columnPath, ColumnEncoding encoding) Sets the encoding policy for one leaf column, overriding the file-wide default; both arguments must be non-null.