Package com.adyen.model.checkout
Enum StoredPaymentMethodDetails.TypeEnum
- java.lang.Object
-
- java.lang.Enum<StoredPaymentMethodDetails.TypeEnum>
-
- com.adyen.model.checkout.StoredPaymentMethodDetails.TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<StoredPaymentMethodDetails.TypeEnum>
- Enclosing class:
- StoredPaymentMethodDetails
public static enum StoredPaymentMethodDetails.TypeEnum extends Enum<StoredPaymentMethodDetails.TypeEnum>
The payment method type.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BANKTRANSFER_IBANBCMC_MOBILEBCMC_MOBILE_APPBCMC_MOBILE_QRDANAGCASHGRABPAY_IDGRABPAY_MYGRABPAY_PHGRABPAY_SGGRABPAY_THGRABPAY_VNKAKAOPAYMOMO_WALLETMOMO_WALLET_APPOXXOPAYMAYA_WALLETTRUEMONEYTWINT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StoredPaymentMethodDetails.TypeEnumfromValue(String value)StringgetValue()StringtoString()static StoredPaymentMethodDetails.TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static StoredPaymentMethodDetails.TypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BCMC_MOBILE
public static final StoredPaymentMethodDetails.TypeEnum BCMC_MOBILE
-
BCMC_MOBILE_QR
public static final StoredPaymentMethodDetails.TypeEnum BCMC_MOBILE_QR
-
BCMC_MOBILE_APP
public static final StoredPaymentMethodDetails.TypeEnum BCMC_MOBILE_APP
-
BANKTRANSFER_IBAN
public static final StoredPaymentMethodDetails.TypeEnum BANKTRANSFER_IBAN
-
MOMO_WALLET
public static final StoredPaymentMethodDetails.TypeEnum MOMO_WALLET
-
MOMO_WALLET_APP
public static final StoredPaymentMethodDetails.TypeEnum MOMO_WALLET_APP
-
TWINT
public static final StoredPaymentMethodDetails.TypeEnum TWINT
-
PAYMAYA_WALLET
public static final StoredPaymentMethodDetails.TypeEnum PAYMAYA_WALLET
-
GRABPAY_SG
public static final StoredPaymentMethodDetails.TypeEnum GRABPAY_SG
-
GRABPAY_MY
public static final StoredPaymentMethodDetails.TypeEnum GRABPAY_MY
-
GRABPAY_TH
public static final StoredPaymentMethodDetails.TypeEnum GRABPAY_TH
-
GRABPAY_ID
public static final StoredPaymentMethodDetails.TypeEnum GRABPAY_ID
-
GRABPAY_VN
public static final StoredPaymentMethodDetails.TypeEnum GRABPAY_VN
-
GRABPAY_PH
public static final StoredPaymentMethodDetails.TypeEnum GRABPAY_PH
-
OXXO
public static final StoredPaymentMethodDetails.TypeEnum OXXO
-
GCASH
public static final StoredPaymentMethodDetails.TypeEnum GCASH
-
DANA
public static final StoredPaymentMethodDetails.TypeEnum DANA
-
KAKAOPAY
public static final StoredPaymentMethodDetails.TypeEnum KAKAOPAY
-
TRUEMONEY
public static final StoredPaymentMethodDetails.TypeEnum TRUEMONEY
-
-
Method Detail
-
values
public static StoredPaymentMethodDetails.TypeEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StoredPaymentMethodDetails.TypeEnum c : StoredPaymentMethodDetails.TypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StoredPaymentMethodDetails.TypeEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<StoredPaymentMethodDetails.TypeEnum>
-
fromValue
public static StoredPaymentMethodDetails.TypeEnum fromValue(String value)
-
-