public enum SCAErrorCode extends Enum<SCAErrorCode>
| Enum Constant and Description |
|---|
AUTH_CODE_GENERATION_FAILURE |
SCA_METHOD_NOT_SUPPORTED |
SCA_OPERATION_EXPIRED |
SCA_OPERATION_NOT_FOUND |
SCA_OPERATION_USED_OR_STOLEN |
SCA_OPERATION_VALIDATION_FAILED |
USER_SCA_DATA_NOT_FOUND |
| Modifier and Type | Method and Description |
|---|---|
static SCAErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SCAErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SCAErrorCode USER_SCA_DATA_NOT_FOUND
public static final SCAErrorCode AUTH_CODE_GENERATION_FAILURE
public static final SCAErrorCode SCA_METHOD_NOT_SUPPORTED
public static final SCAErrorCode SCA_OPERATION_EXPIRED
public static final SCAErrorCode SCA_OPERATION_NOT_FOUND
public static final SCAErrorCode SCA_OPERATION_USED_OR_STOLEN
public static final SCAErrorCode SCA_OPERATION_VALIDATION_FAILED
public static SCAErrorCode[] values()
for (SCAErrorCode c : SCAErrorCode.values()) System.out.println(c);
public static SCAErrorCode 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 © 2020. All rights reserved.