goldengate.common.crypto
Enum DynamicKeyObject.INSTANCES
java.lang.Object
java.lang.Enum<DynamicKeyObject.INSTANCES>
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
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
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.