public static enum HashAlgorithm.Status extends Enum<HashAlgorithm.Status>
Enum Constant and Description |
---|
NORMAL
Normal fully supported algorithm.
|
NOT_IMPLEMENTED
Algorithm defined in the specification, but not yet available in the implementation.
|
NOT_TRUSTED
Algorithm no longer considered secure and only kept for backwards compatibility.
|
Modifier and Type | Method and Description |
---|---|
static HashAlgorithm.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HashAlgorithm.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HashAlgorithm.Status NORMAL
public static final HashAlgorithm.Status NOT_TRUSTED
public static final HashAlgorithm.Status NOT_IMPLEMENTED
public static HashAlgorithm.Status[] values()
for (HashAlgorithm.Status c : HashAlgorithm.Status.values()) System.out.println(c);
public static HashAlgorithm.Status 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 © 2024 Guardtime. All rights reserved.