public enum MiddlewareErrorCode extends Enum<MiddlewareErrorCode>
| Modifier and Type | Method and Description |
|---|---|
static MiddlewareErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MiddlewareErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MiddlewareErrorCode CURRENCY_MISMATCH
public static final MiddlewareErrorCode NO_SUCH_ALGORITHM
public static final MiddlewareErrorCode PAYMENT_PROCESSING_FAILURE
public static final MiddlewareErrorCode AUTHENTICATION_FAILURE
public static final MiddlewareErrorCode ACCOUNT_CREATION_VALIDATION_FAILURE
public static final MiddlewareErrorCode INSUFFICIENT_PERMISSION
public static final MiddlewareErrorCode REQUEST_VALIDATION_FAILURE
public static final MiddlewareErrorCode CAN_NOT_RESOLVE_SCA_CHALLENGE_DATA
public static final MiddlewareErrorCode BRANCH_NOT_FOUND
public static MiddlewareErrorCode[] values()
for (MiddlewareErrorCode c : MiddlewareErrorCode.values()) System.out.println(c);
public static MiddlewareErrorCode 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 © 2019. All rights reserved.