public enum DataEncryptionMethod extends java.lang.Enum<DataEncryptionMethod>
Enum Constant and Description |
---|
AES128_CBC |
AES192_CBC |
AES256_CBC |
TRIPLEDES_CBS |
Modifier and Type | Method and Description |
---|---|
static DataEncryptionMethod |
fromUrn(java.lang.String other) |
java.lang.String |
toString() |
static DataEncryptionMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DataEncryptionMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataEncryptionMethod TRIPLEDES_CBS
public static final DataEncryptionMethod AES128_CBC
public static final DataEncryptionMethod AES256_CBC
public static final DataEncryptionMethod AES192_CBC
public static DataEncryptionMethod[] values()
for (DataEncryptionMethod c : DataEncryptionMethod.values()) System.out.println(c);
public static DataEncryptionMethod valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static DataEncryptionMethod fromUrn(java.lang.String other)
public java.lang.String toString()
toString
in class java.lang.Enum<DataEncryptionMethod>