public static enum Constants.BdecVersion extends Enum<Constants.BdecVersion>
| Enum Constant and Description |
|---|
ONE
Uses Arrow to generate BDEC chunks.
|
THREE
Uses Parquet to generate BDEC chunks with
ParquetRowBuffer (page-level compression). |
| Modifier and Type | Method and Description |
|---|---|
static Constants.BdecVersion |
fromInt(int val) |
byte |
toByte() |
static Constants.BdecVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.BdecVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.BdecVersion ONE
public static final Constants.BdecVersion THREE
ParquetRowBuffer (page-level compression). This
version is experimental and WIP at the moment.public static Constants.BdecVersion[] values()
for (Constants.BdecVersion c : Constants.BdecVersion.values()) System.out.println(c);
public static Constants.BdecVersion valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic byte toByte()
public static Constants.BdecVersion fromInt(int val)
Copyright © 2023. All rights reserved.