public static enum DOFCipher.Strength extends java.lang.Enum<DOFCipher.Strength>
Enum Constant and Description |
---|
_128
128-bit security strength.
|
_192
192-bit security strength.
|
_256
256-bit security strength.
|
Modifier and Type | Method and Description |
---|---|
static DOFCipher.Strength |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DOFCipher.Strength[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DOFCipher.Strength _256
public static final DOFCipher.Strength _192
public static final DOFCipher.Strength _128
public static DOFCipher.Strength[] values()
for (DOFCipher.Strength c : DOFCipher.Strength.values()) System.out.println(c);
public static DOFCipher.Strength 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 null