public enum SignatureErrorCode extends Enum<SignatureErrorCode>
| Enum Constant and Description |
|---|
INTERNAL_SERVER_ERROR |
NOT_VALID |
REQUEST_DATA_NOT_VALID |
| Modifier and Type | Method and Description |
|---|---|
String |
getErrorCode() |
String |
getErrorMessage() |
static SignatureErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SignatureErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SignatureErrorCode REQUEST_DATA_NOT_VALID
public static final SignatureErrorCode NOT_VALID
public static final SignatureErrorCode INTERNAL_SERVER_ERROR
public static SignatureErrorCode[] values()
for (SignatureErrorCode c : SignatureErrorCode.values()) System.out.println(c);
public static SignatureErrorCode 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 nullpublic String getErrorCode()
public String getErrorMessage()
Copyright © 2020. All rights reserved.