public enum KeyProtector extends java.lang.Enum<KeyProtector>
Enum Constant and Description |
---|
AESCBC128 |
HMACSHA224 |
HMACSHA256 |
HMACSHA384 |
HMACSHA512 |
TripleDESCBC |
Modifier and Type | Method and Description |
---|---|
static KeyProtector |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KeyProtector[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyProtector HMACSHA224
public static final KeyProtector HMACSHA256
public static final KeyProtector HMACSHA384
public static final KeyProtector HMACSHA512
public static final KeyProtector TripleDESCBC
public static final KeyProtector AESCBC128
public static KeyProtector[] values()
for (KeyProtector c : KeyProtector.values()) System.out.println(c);
public static KeyProtector 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