public enum ParquetCipher extends Enum<ParquetCipher>
| Enum Constant and Description |
|---|
AES_GCM_CTR_V1 |
AES_GCM_V1 |
| Modifier and Type | Method and Description |
|---|---|
abstract EncryptionAlgorithm |
getEncryptionAlgorithm() |
static ParquetCipher |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParquetCipher[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParquetCipher AES_GCM_V1
public static final ParquetCipher AES_GCM_CTR_V1
public static ParquetCipher[] values()
for (ParquetCipher c : ParquetCipher.values()) System.out.println(c);
public static ParquetCipher 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 abstract EncryptionAlgorithm getEncryptionAlgorithm()
Copyright © 2023 The Apache Software Foundation. All rights reserved.