java.io.Serializable, java.lang.Comparable<KeyInfo.PRF>public static enum KeyInfo.PRF extends java.lang.Enum<KeyInfo.PRF>
| Enum Constant | Description |
|---|---|
HMAC_SHA1 |
|
HMAC_SHA256 |
|
HMAC_SHA512 |
|
None |
| Modifier and Type | Method | Description |
|---|---|---|
static KeyInfo.PRF |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static KeyInfo.PRF[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyInfo.PRF None
public static final KeyInfo.PRF HMAC_SHA1
public static final KeyInfo.PRF HMAC_SHA256
public static final KeyInfo.PRF HMAC_SHA512
public static KeyInfo.PRF[] values()
for (KeyInfo.PRF c : KeyInfo.PRF.values()) System.out.println(c);
public static KeyInfo.PRF 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