Enum Class EncryptionAlgorithm

java.lang.Object
java.lang.Enum<EncryptionAlgorithm>
org.apache.orc.EncryptionAlgorithm
All Implemented Interfaces:
Serializable, Comparable<EncryptionAlgorithm>, Constable

public enum EncryptionAlgorithm extends Enum<EncryptionAlgorithm>
The encryption algorithms supported by ORC.

This class can't reference any of the newer Hadoop classes.

  • Enum Constant Details

  • Method Details

    • values

      public static EncryptionAlgorithm[] 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

      public static EncryptionAlgorithm valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • getAlgorithm

      public String getAlgorithm()
    • getIvLength

      public int getIvLength()
    • createCipher

      public Cipher 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

      public static EncryptionAlgorithm fromSerialization(int serialization)
      Get the serialization code for this enumeration.
      Returns:
      the serialization value
    • toString

      public String toString()
      Overrides:
      toString in class Enum<EncryptionAlgorithm>