goldengate.common.crypto
Enum DynamicKeyObject.INSTANCES

java.lang.Object
  extended by java.lang.Enum<DynamicKeyObject.INSTANCES>
      extended by goldengate.common.crypto.DynamicKeyObject.INSTANCES
All Implemented Interfaces:
Serializable, Comparable<DynamicKeyObject.INSTANCES>
Enclosing class:
DynamicKeyObject

public static enum DynamicKeyObject.INSTANCES
extends Enum<DynamicKeyObject.INSTANCES>

Minimal key size

Author:
Frederic Bregier

Enum Constant Summary
AES
           
ARCFOUR
           
Blowfish
           
DES
           
DESede
           
RC2
           
RC4
           
 
Method Summary
static DynamicKeyObject.INSTANCES valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DynamicKeyObject.INSTANCES[] 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

AES

public static final DynamicKeyObject.INSTANCES AES

ARCFOUR

public static final DynamicKeyObject.INSTANCES ARCFOUR

Blowfish

public static final DynamicKeyObject.INSTANCES Blowfish

DES

public static final DynamicKeyObject.INSTANCES DES

DESede

public static final DynamicKeyObject.INSTANCES DESede

RC2

public static final DynamicKeyObject.INSTANCES RC2

RC4

public static final DynamicKeyObject.INSTANCES RC4
Method Detail

values

public static DynamicKeyObject.INSTANCES[] 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 (DynamicKeyObject.INSTANCES c : DynamicKeyObject.INSTANCES.values())
    System.out.println(c);

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

valueOf

public static DynamicKeyObject.INSTANCES 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


Copyright © 2009-2012 Frederic Bregier. All Rights Reserved.