Package de.xima.fc.mdl.enums
Enum EDBEncryptionAlgorithm
- java.lang.Object
-
- java.lang.Enum<EDBEncryptionAlgorithm>
-
- de.xima.fc.mdl.enums.EDBEncryptionAlgorithm
-
- All Implemented Interfaces:
INamedUiElement
,Serializable
,Comparable<EDBEncryptionAlgorithm>
public enum EDBEncryptionAlgorithm extends Enum<EDBEncryptionAlgorithm> implements INamedUiElement
-
-
Enum Constant Summary
-
Field Summary
-
Fields inherited from interface de.xima.fc.interfaces.INamedUiElement
ATTR_DISPLAY_NAME
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDisplayName(Locale l)
String
getName()
String
getPasswordRegEx()
static EDBEncryptionAlgorithm
valueOf(String name)
Returns the enum constant of this type with the specified name.static EDBEncryptionAlgorithm[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PBE_WITH_MD2_AND_DES
public static final EDBEncryptionAlgorithm PBE_WITH_MD2_AND_DES
-
PBE_WITH_MD2_AND_RC2
public static final EDBEncryptionAlgorithm PBE_WITH_MD2_AND_RC2
-
PBE_WITH_MD5_AND_DES
public static final EDBEncryptionAlgorithm PBE_WITH_MD5_AND_DES
-
PBE_WITH_MD5_AND_RC2
public static final EDBEncryptionAlgorithm PBE_WITH_MD5_AND_RC2
-
PBE_WITH_SHA1_AND_DES
public static final EDBEncryptionAlgorithm PBE_WITH_SHA1_AND_DES
-
PBE_WITH_SHA1_AND_RC2
public static final EDBEncryptionAlgorithm PBE_WITH_SHA1_AND_RC2
-
PBE_WITH_SHA_AND_2_KEYTRIPLEDES_CBC
public static final EDBEncryptionAlgorithm PBE_WITH_SHA_AND_2_KEYTRIPLEDES_CBC
-
PBE_WITH_SHA_AND_3_KEYTRIPLEDES_CBC
public static final EDBEncryptionAlgorithm PBE_WITH_SHA_AND_3_KEYTRIPLEDES_CBC
-
PBE_WITH_SHA_AND_128BITRC2_CBC
public static final EDBEncryptionAlgorithm PBE_WITH_SHA_AND_128BITRC2_CBC
-
PBE_WITH_SHA_AND_40BITRC2_CBC
public static final EDBEncryptionAlgorithm PBE_WITH_SHA_AND_40BITRC2_CBC
-
PBE_WITH_SHA_AND_128BITRC4
public static final EDBEncryptionAlgorithm PBE_WITH_SHA_AND_128BITRC4
-
PBE_WITH_SHA_AND_40BITRC4
public static final EDBEncryptionAlgorithm PBE_WITH_SHA_AND_40BITRC4
-
PBE_WITH_SHA_AND_TWOFISH_CBC
public static final EDBEncryptionAlgorithm PBE_WITH_SHA_AND_TWOFISH_CBC
-
PBE_WITH_SHA_AND_IDEA_CBC
public static final EDBEncryptionAlgorithm PBE_WITH_SHA_AND_IDEA_CBC
-
-
Method Detail
-
values
public static EDBEncryptionAlgorithm[] 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 (EDBEncryptionAlgorithm c : EDBEncryptionAlgorithm.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EDBEncryptionAlgorithm 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 nameNullPointerException
- if the argument is null
-
getDisplayName
public String getDisplayName(Locale l)
- Specified by:
getDisplayName
in interfaceINamedUiElement
- Returns:
- Wert, der das entsprechende Objekt an Oberfläche repräsentiert (wird i.A. zur Laufzeit ermittelt).
-
getPasswordRegEx
public String getPasswordRegEx()
-
getName
public String getName()
-
-