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