public enum PaymentMethodType extends Enum<PaymentMethodType>
| Enum Constant and Description |
|---|
_UNKNOWN |
ALIPAY |
AMAZON_PAYMENTS |
APPLE_PAY |
BANCONTACT |
CARD |
DIRECT_DEBIT |
DOTPAY |
GENERIC |
GIROPAY |
GOOGLE_PAY |
IDEAL |
NETBANKING_EMANDATES |
PAYPAL_EXPRESS_CHECKOUT |
SOFORT |
UNIONPAY |
UPI |
WECHAT_PAY |
| Modifier and Type | Method and Description |
|---|---|
static PaymentMethodType |
valueOf(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.
|
public static final PaymentMethodType CARD
public static final PaymentMethodType PAYPAL_EXPRESS_CHECKOUT
public static final PaymentMethodType AMAZON_PAYMENTS
public static final PaymentMethodType DIRECT_DEBIT
public static final PaymentMethodType GENERIC
public static final PaymentMethodType ALIPAY
public static final PaymentMethodType UNIONPAY
public static final PaymentMethodType APPLE_PAY
public static final PaymentMethodType WECHAT_PAY
public static final PaymentMethodType IDEAL
public static final PaymentMethodType GOOGLE_PAY
public static final PaymentMethodType SOFORT
public static final PaymentMethodType BANCONTACT
public static final PaymentMethodType GIROPAY
public static final PaymentMethodType DOTPAY
public static final PaymentMethodType UPI
public static final PaymentMethodType NETBANKING_EMANDATES
public static final PaymentMethodType _UNKNOWN
public static PaymentMethodType[] values()
for (PaymentMethodType c : PaymentMethodType.values()) System.out.println(c);
public static PaymentMethodType 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 nullCopyright © 2023 ChargeBee. All rights reserved.