public enum PaymentAdviceCode extends Enum<PaymentAdviceCode>
| Enum Constant and Description |
|---|
_UNKNOWN
Unknown values will be mapped by this enum member
|
PAYMENTADVICE_01
For Mastercard, expired card account upgrade or portfolio sale conversion.
|
PAYMENTADVICE_02
For Mastercard, over credit limit or insufficient funds.
|
PAYMENTADVICE_03
For Mastercard, account closed as fraudulent.
|
PAYMENTADVICE_04
For Mastercard, token requirements not fulfilled for this token type.
|
PAYMENTADVICE_21
For Mastercard, the card holder has been unsuccessful at canceling recurring payment through merchant.
|
PAYMENTADVICE_22
For Mastercard, merchant does not qualify for product code.
|
PAYMENTADVICE_24
For Mastercard, retry after 1 hour.
|
PAYMENTADVICE_25
For Mastercard, retry after 24 hours.
|
PAYMENTADVICE_26
For Mastercard, retry after 2 days.
|
PAYMENTADVICE_27
For Mastercard, retry after 4 days.
|
PAYMENTADVICE_28
For Mastercard, retry after 6 days.
|
PAYMENTADVICE_29
For Mastercard, retry after 8 days.
|
PAYMENTADVICE_30
For Mastercard, retry after 10 days .
|
PAYMENTADVICE_40
For Mastercard, consumer non-reloadable prepaid card.
|
PAYMENTADVICE_43
For Mastercard, consumer multi-use virtual card number.
|
| Modifier and Type | Method and Description |
|---|---|
static PaymentAdviceCode |
constructFromString(String toConvert)
Returns the enum member associated with the given string value.
|
static PaymentAdviceCode |
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<PaymentAdviceCode> toConvert)
Convert list of PaymentAdviceCode values to list of string values.
|
String |
value()
Returns the string value associated with the enum member.
|
static PaymentAdviceCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentAdviceCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentAdviceCode PAYMENTADVICE_01
public static final PaymentAdviceCode PAYMENTADVICE_02
public static final PaymentAdviceCode PAYMENTADVICE_03
public static final PaymentAdviceCode PAYMENTADVICE_04
public static final PaymentAdviceCode PAYMENTADVICE_21
public static final PaymentAdviceCode PAYMENTADVICE_22
public static final PaymentAdviceCode PAYMENTADVICE_24
public static final PaymentAdviceCode PAYMENTADVICE_25
public static final PaymentAdviceCode PAYMENTADVICE_26
public static final PaymentAdviceCode PAYMENTADVICE_27
public static final PaymentAdviceCode PAYMENTADVICE_28
public static final PaymentAdviceCode PAYMENTADVICE_29
public static final PaymentAdviceCode PAYMENTADVICE_30
public static final PaymentAdviceCode PAYMENTADVICE_40
public static final PaymentAdviceCode PAYMENTADVICE_43
public static final PaymentAdviceCode _UNKNOWN
public static PaymentAdviceCode[] values()
for (PaymentAdviceCode c : PaymentAdviceCode.values()) System.out.println(c);
public static PaymentAdviceCode 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 PaymentAdviceCode 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 PaymentAdviceCode fromString(String toConvert)
toConvert - String value to get enum member.public String value()
public String toString()
toString in class Enum<PaymentAdviceCode>public static List<String> toValue(List<PaymentAdviceCode> toConvert)
toConvert - The list of PaymentAdviceCode values to convert.Copyright © 2025. All rights reserved.