public enum SignAlgorithmHmacSHA256 extends Enum<SignAlgorithmHmacSHA256>
| Enum Constant and Description |
|---|
HmacSHA256 |
| Modifier and Type | Method and Description |
|---|---|
String |
getAlgorithmName() |
Mac |
getMac() |
static SignAlgorithmHmacSHA256 |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SignAlgorithmHmacSHA256[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SignAlgorithmHmacSHA256 HmacSHA256
public static SignAlgorithmHmacSHA256[] values()
for (SignAlgorithmHmacSHA256 c : SignAlgorithmHmacSHA256.values()) System.out.println(c);
public static SignAlgorithmHmacSHA256 valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getAlgorithmName()
public Mac getMac()
Copyright © 2022. All rights reserved.