| Enum Constant and Description |
|---|
HASH_ALGO_NONE |
HASH_ALGO_RIPEMD160 |
HASH_ALGO_SHA_256 |
HASH_ALGO_SHA_384 |
HASH_ALGO_SHA_512 |
| Modifier and Type | Method and Description |
|---|---|
static HashAlgo |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HashAlgo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HashAlgo HASH_ALGO_NONE
public static final HashAlgo HASH_ALGO_SHA_256
public static final HashAlgo HASH_ALGO_SHA_384
public static final HashAlgo HASH_ALGO_SHA_512
public static final HashAlgo HASH_ALGO_RIPEMD160
public static HashAlgo[] values()
for (HashAlgo c : HashAlgo.values()) System.out.println(c);
public static HashAlgo valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null