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