public enum EciFlag extends Enum<EciFlag>
| Enum Constant and Description |
|---|
_UNKNOWN
Unknown values will be mapped by this enum member
|
ATTEMPTED_AUTHENTICATION_TRANSACTION
VISA, AMEX, JCB, DINERS CLUB attempted authentication transaction.
|
FULLY_AUTHENTICATED_TRANSACTION
VISA, AMEX, JCB, DINERS CLUB fully authenticated transaction.
|
MASTERCARD_ATTEMPTED_AUTHENTICATION_TRANSACTION
Mastercard attempted authentication transaction.
|
MASTERCARD_FULLY_AUTHENTICATED_TRANSACTION
Mastercard fully authenticated transaction.
|
MASTERCARD_NON_3D_SECURE_TRANSACTION
Mastercard non-3-D Secure transaction.
|
NON_3D_SECURE_TRANSACTION
VISA, AMEX, JCB, DINERS CLUB non-3-D Secure transaction.
|
| Modifier and Type | Method and Description |
|---|---|
static EciFlag |
constructFromString(String toConvert)
Returns the enum member associated with the given string value.
|
static EciFlag |
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<EciFlag> toConvert)
Convert list of EciFlag values to list of string values.
|
String |
value()
Returns the string value associated with the enum member.
|
static EciFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EciFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EciFlag MASTERCARD_NON_3D_SECURE_TRANSACTION
public static final EciFlag MASTERCARD_ATTEMPTED_AUTHENTICATION_TRANSACTION
public static final EciFlag MASTERCARD_FULLY_AUTHENTICATED_TRANSACTION
public static final EciFlag FULLY_AUTHENTICATED_TRANSACTION
public static final EciFlag ATTEMPTED_AUTHENTICATION_TRANSACTION
public static final EciFlag NON_3D_SECURE_TRANSACTION
public static final EciFlag _UNKNOWN
public static EciFlag[] values()
for (EciFlag c : EciFlag.values()) System.out.println(c);
public static EciFlag 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 EciFlag 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 EciFlag fromString(String toConvert)
toConvert - String value to get enum member.public String value()
public String toString()
Copyright © 2025. All rights reserved.