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