public static enum SignUtil.SigningAlgorithm extends Enum<SignUtil.SigningAlgorithm>
| Enum Constant and Description |
|---|
HmacSHA1 |
| Modifier and Type | Method and Description |
|---|---|
static SignUtil.SigningAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SignUtil.SigningAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SignUtil.SigningAlgorithm HmacSHA1
public static SignUtil.SigningAlgorithm[] values()
for (SignUtil.SigningAlgorithm c : SignUtil.SigningAlgorithm.values()) System.out.println(c);
public static SignUtil.SigningAlgorithm 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 nullCopyright © 2018–2020 Alibaba Group. All rights reserved.