Package io.deephaven.extensions.barrage
Enum Class ColumnEncoding
- All Implemented Interfaces:
Serializable,Comparable<ColumnEncoding>,java.lang.constant.Constable
Arrow encoding to apply to a column when generating a Barrage schema. Auto-detected per column by
BarrageUtil.schemaFromTable(io.deephaven.engine.table.Table) when structural guarantees make a particular
encoding clearly beneficial, or specified explicitly via
Table.BARRAGE_SCHEMA_ATTRIBUTE.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionbooleanReturnstruefor any run-end encoding variant.static ColumnEncodingReturns the enum constant of this class with the specified name.static ColumnEncoding[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
RUN_END_ENCODED_INT16
-
RUN_END_ENCODED_INT32
-
RUN_END_ENCODED_INT64
-
DICTIONARY_ENCODED
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
isRunEndEncoded
public boolean isRunEndEncoded()Returnstruefor any run-end encoding variant.
-