public static enum DigitallySigned.HashAlgorithm extends Enum<DigitallySigned.HashAlgorithm>
| Enum Constant and Description |
|---|
MD5 |
NONE |
SHA1 |
SHA224 |
SHA256 |
SHA384 |
SHA512 |
| Modifier and Type | Method and Description |
|---|---|
static DigitallySigned.HashAlgorithm |
valueOf(int ord) |
static DigitallySigned.HashAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DigitallySigned.HashAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DigitallySigned.HashAlgorithm NONE
public static final DigitallySigned.HashAlgorithm MD5
public static final DigitallySigned.HashAlgorithm SHA1
public static final DigitallySigned.HashAlgorithm SHA224
public static final DigitallySigned.HashAlgorithm SHA256
public static final DigitallySigned.HashAlgorithm SHA384
public static final DigitallySigned.HashAlgorithm SHA512
public static DigitallySigned.HashAlgorithm[] values()
for (DigitallySigned.HashAlgorithm c : DigitallySigned.HashAlgorithm.values()) System.out.println(c);
public static DigitallySigned.HashAlgorithm 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 static DigitallySigned.HashAlgorithm valueOf(int ord)