org.apache.accumulo.core.security.crypto
Enum CryptoModule.CryptoInitProperty

java.lang.Object
  extended by java.lang.Enum<CryptoModule.CryptoInitProperty>
      extended by org.apache.accumulo.core.security.crypto.CryptoModule.CryptoInitProperty
All Implemented Interfaces:
Serializable, Comparable<CryptoModule.CryptoInitProperty>
Enclosing interface:
CryptoModule

public static enum CryptoModule.CryptoInitProperty
extends Enum<CryptoModule.CryptoInitProperty>


Enum Constant Summary
ALGORITHM_NAME
           
CIPHER_SUITE
           
INITIALIZATION_VECTOR
           
PLAINTEXT_SESSION_KEY
           
 
Method Summary
 String getKey()
           
static CryptoModule.CryptoInitProperty valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CryptoModule.CryptoInitProperty[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ALGORITHM_NAME

public static final CryptoModule.CryptoInitProperty ALGORITHM_NAME

CIPHER_SUITE

public static final CryptoModule.CryptoInitProperty CIPHER_SUITE

INITIALIZATION_VECTOR

public static final CryptoModule.CryptoInitProperty INITIALIZATION_VECTOR

PLAINTEXT_SESSION_KEY

public static final CryptoModule.CryptoInitProperty PLAINTEXT_SESSION_KEY
Method Detail

values

public static CryptoModule.CryptoInitProperty[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (CryptoModule.CryptoInitProperty c : CryptoModule.CryptoInitProperty.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static CryptoModule.CryptoInitProperty valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
NullPointerException - if the argument is null

getKey

public String getKey()


Copyright © 2013 Apache Accumulo Project. All Rights Reserved.