public enum WechatPayAlgorithms extends Enum<WechatPayAlgorithms>
| Modifier and Type | Method and Description |
|---|---|
static WechatPayAlgorithms |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WechatPayAlgorithms[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WechatPayAlgorithms RSA
public static final WechatPayAlgorithms SM3
private final String algorithm
public static WechatPayAlgorithms[] values()
for (WechatPayAlgorithms c : WechatPayAlgorithms.values()) System.out.println(c);
public static WechatPayAlgorithms 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 © 2023. All rights reserved.