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