public static enum AliceContext.MacAlgorithm extends java.lang.Enum<AliceContext.MacAlgorithm>
Enum Constant and Description |
---|
HMAC_SHA_1
|
HMAC_SHA_256
|
HMAC_SHA_384
|
HMAC_SHA_512
|
NONE
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString()
|
static AliceContext.MacAlgorithm |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AliceContext.MacAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AliceContext.MacAlgorithm NONE
public static final AliceContext.MacAlgorithm HMAC_SHA_1
public static final AliceContext.MacAlgorithm HMAC_SHA_256
public static final AliceContext.MacAlgorithm HMAC_SHA_384
public static final AliceContext.MacAlgorithm HMAC_SHA_512
public static AliceContext.MacAlgorithm[] values()
for (AliceContext.MacAlgorithm c : AliceContext.MacAlgorithm.values()) System.out.println(c);
public static AliceContext.MacAlgorithm 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 name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<AliceContext.MacAlgorithm>