public static enum TransactionVerificationException.VerifyStatus extends java.lang.Enum<TransactionVerificationException.VerifyStatus>
Enum Constant and Description |
---|
UNRECOGNIZED |
VERIFY_STATUS_INVALID_HASH |
VERIFY_STATUS_OK |
VERIFY_STATUS_SIGN_NOT_MATCH |
Modifier and Type | Method and Description |
---|---|
static TransactionVerificationException.VerifyStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TransactionVerificationException.VerifyStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionVerificationException.VerifyStatus VERIFY_STATUS_OK
public static final TransactionVerificationException.VerifyStatus VERIFY_STATUS_SIGN_NOT_MATCH
public static final TransactionVerificationException.VerifyStatus VERIFY_STATUS_INVALID_HASH
public static final TransactionVerificationException.VerifyStatus UNRECOGNIZED
public static TransactionVerificationException.VerifyStatus[] values()
for (TransactionVerificationException.VerifyStatus c : TransactionVerificationException.VerifyStatus.values()) System.out.println(c);
public static TransactionVerificationException.VerifyStatus 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