public enum PaResStatus extends Enum<PaResStatus>
| Enum Constant and Description |
|---|
_UNKNOWN
Unknown values will be mapped by this enum member
|
AUTHENTICATIONREJECTED
Authentication rejected (merchant must not submit for authorization).
|
CHALLENGEREQUIRED
Challenge required for authentication.
|
DECOUPLEDAUTHENTICATION
Challenge required; decoupled authentication confirmed.
|
FAILEDAUTHENTICATION
Failed authentication / account not verified / transaction denied.
|
INFORMATIONALONLY
Informational only; 3DS requestor challenge preference acknowledged.
|
SUCCESSFULATTEMPTSTRANSACTION
Successful attempts transaction.
|
SUCCESSFULAUTHENTICATION
Successful authentication.
|
UNABLETOCOMPLETEAUTHENTICATION
Unable to complete authentication.
|
| Modifier and Type | Method and Description |
|---|---|
static PaResStatus |
constructFromString(String toConvert)
Returns the enum member associated with the given string value.
|
static PaResStatus |
fromString(String toConvert)
Returns the enum member associated with the given string value.
|
String |
toString()
Get string representation of this enum.
|
static List<String> |
toValue(List<PaResStatus> toConvert)
Convert list of PaResStatus values to list of string values.
|
String |
value()
Returns the string value associated with the enum member.
|
static PaResStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaResStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaResStatus SUCCESSFULAUTHENTICATION
public static final PaResStatus FAILEDAUTHENTICATION
public static final PaResStatus UNABLETOCOMPLETEAUTHENTICATION
public static final PaResStatus SUCCESSFULATTEMPTSTRANSACTION
public static final PaResStatus CHALLENGEREQUIRED
public static final PaResStatus AUTHENTICATIONREJECTED
public static final PaResStatus DECOUPLEDAUTHENTICATION
public static final PaResStatus INFORMATIONALONLY
public static final PaResStatus _UNKNOWN
public static PaResStatus[] values()
for (PaResStatus c : PaResStatus.values()) System.out.println(c);
public static PaResStatus 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 static PaResStatus constructFromString(String toConvert) throws IOException
toConvert - String value to get enum member.IOException - when provided value is not mapped to any enum member.public static PaResStatus fromString(String toConvert)
toConvert - String value to get enum member.public String value()
public String toString()
toString in class Enum<PaResStatus>public static List<String> toValue(List<PaResStatus> toConvert)
toConvert - The list of PaResStatus values to convert.Copyright © 2025. All rights reserved.