public static enum Encrypt.SignType extends Enum<Encrypt.SignType>
| Enum Constant and Description |
|---|
HMACSHA256
SHA256
|
MD5
MD5方式
|
SHA1
SHA1
|
| Modifier and Type | Method and Description |
|---|---|
static Encrypt.SignType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Encrypt.SignType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Encrypt.SignType MD5
public static final Encrypt.SignType HMACSHA256
public static final Encrypt.SignType SHA1
public static Encrypt.SignType[] values()
for (Encrypt.SignType c : Encrypt.SignType.values()) System.out.println(c);
public static Encrypt.SignType 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 © 2021 Clouds Studio. All rights reserved.