public enum VerificationResultCode extends Enum<VerificationResultCode>
Enum Constant and Description |
---|
FAIL
Verification failed, which means the signature is definitely invalid or the document does not match with the
signature.
|
NA
Verification not possible, which means there is not enough data to prove or disprove the correctness of the
signature.
|
OK
Verification succeeded, which means there's a way to prove the correctness of the signature.
|
Modifier and Type | Method and Description |
---|---|
static VerificationResultCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VerificationResultCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerificationResultCode OK
public static final VerificationResultCode FAIL
public static final VerificationResultCode NA
public static VerificationResultCode[] values()
for (VerificationResultCode c : VerificationResultCode.values()) System.out.println(c);
public static VerificationResultCode 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.