Enum PaymentMethodType
- java.lang.Object
-
- java.lang.Enum<PaymentMethodType>
-
- com.checkout.handlepaymentsandpayouts.flow.paymentsessionssubmit.enums.PaymentMethodType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PaymentMethodType>
public enum PaymentMethodType extends java.lang.Enum<PaymentMethodType>
The payment method name.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PaymentMethodTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PaymentMethodType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALIPAY_CN
@SerializedName("alipay_cn") public static final PaymentMethodType ALIPAY_CN
-
ALIPAY_HK
@SerializedName("alipay_hk") public static final PaymentMethodType ALIPAY_HK
-
ALMA
@SerializedName("alma") public static final PaymentMethodType ALMA
-
APPLEPAY
@SerializedName("applepay") public static final PaymentMethodType APPLEPAY
-
BANCONTACT
@SerializedName("bancontact") public static final PaymentMethodType BANCONTACT
-
BENEFIT
@SerializedName("benefit") public static final PaymentMethodType BENEFIT
-
CARD
@SerializedName("card") public static final PaymentMethodType CARD
-
DANA
@SerializedName("dana") public static final PaymentMethodType DANA
-
EPS
@SerializedName("eps") public static final PaymentMethodType EPS
-
GCASH
@SerializedName("gcash") public static final PaymentMethodType GCASH
-
GOOGLEPAY
@SerializedName("googlepay") public static final PaymentMethodType GOOGLEPAY
-
IDEAL
@SerializedName("ideal") public static final PaymentMethodType IDEAL
-
KAKAOPAY
@SerializedName("kakaopay") public static final PaymentMethodType KAKAOPAY
-
KLARNA
@SerializedName("klarna") public static final PaymentMethodType KLARNA
-
KNET
@SerializedName("knet") public static final PaymentMethodType KNET
-
MBWAY
@SerializedName("mbway") public static final PaymentMethodType MBWAY
-
MULTIBANCO
@SerializedName("multibanco") public static final PaymentMethodType MULTIBANCO
-
P24
@SerializedName("p24") public static final PaymentMethodType P24
-
PAYPAL
@SerializedName("paypal") public static final PaymentMethodType PAYPAL
-
QPAY
@SerializedName("qpay") public static final PaymentMethodType QPAY
-
SEPA
@SerializedName("sepa") public static final PaymentMethodType SEPA
-
SOFORT
@SerializedName("sofort") public static final PaymentMethodType SOFORT
-
STCPAY
@SerializedName("stcpay") public static final PaymentMethodType STCPAY
-
TABBY
@SerializedName("tabby") public static final PaymentMethodType TABBY
-
TAMARA
@SerializedName("tamara") public static final PaymentMethodType TAMARA
-
TNG
@SerializedName("tng") public static final PaymentMethodType TNG
-
TRUEMONEY
@SerializedName("truemoney") public static final PaymentMethodType TRUEMONEY
-
-
Method Detail
-
values
public static PaymentMethodType[] 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 (PaymentMethodType c : PaymentMethodType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PaymentMethodType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-