Package org.apache.orc
Enum Class EncryptionAlgorithm
- All Implemented Interfaces:
Serializable
,Comparable<EncryptionAlgorithm>
,Constable
The encryption algorithms supported by ORC.
This class can't reference any of the newer Hadoop classes.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic EncryptionAlgorithm
fromSerialization
(int serialization) Get the serialization code for this enumeration.int
int
Get the serialization code for this enumeration.byte[]
int
toString()
static EncryptionAlgorithm
Returns the enum constant of this class with the specified name.static EncryptionAlgorithm[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
AES_CTR_128
-
AES_CTR_256
-
-
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
-
getAlgorithm
-
getIvLength
public int getIvLength() -
createCipher
-
keyLength
public int keyLength() -
getZeroKey
public byte[] getZeroKey() -
getSerialization
public int getSerialization()Get the serialization code for this enumeration.- Returns:
- the serialization value
-
fromSerialization
Get the serialization code for this enumeration.- Returns:
- the serialization value
-
toString
- Overrides:
toString
in classEnum<EncryptionAlgorithm>
-