public enum PaymentMethod extends Enum<PaymentMethod>
| Enum Constant and Description |
|---|
_UNKNOWN |
ACH_CREDIT |
ALIPAY |
AMAZON_PAYMENTS |
APPLE_PAY |
BANCONTACT |
BANK_TRANSFER |
BOLETO |
CARD |
CASH |
CHARGEBACK |
CHECK |
CUSTOM |
DIRECT_DEBIT |
DOTPAY |
GIROPAY |
GOOGLE_PAY |
IDEAL |
NETBANKING_EMANDATES |
OTHER |
PAYPAL_EXPRESS_CHECKOUT |
SEPA_CREDIT |
SOFORT |
UNIONPAY |
UPI |
WECHAT_PAY |
| Modifier and Type | Method and Description |
|---|---|
static PaymentMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentMethod CARD
public static final PaymentMethod CASH
public static final PaymentMethod CHECK
public static final PaymentMethod CHARGEBACK
public static final PaymentMethod BANK_TRANSFER
public static final PaymentMethod AMAZON_PAYMENTS
public static final PaymentMethod PAYPAL_EXPRESS_CHECKOUT
public static final PaymentMethod DIRECT_DEBIT
public static final PaymentMethod ALIPAY
public static final PaymentMethod UNIONPAY
public static final PaymentMethod APPLE_PAY
public static final PaymentMethod WECHAT_PAY
public static final PaymentMethod ACH_CREDIT
public static final PaymentMethod SEPA_CREDIT
public static final PaymentMethod IDEAL
public static final PaymentMethod GOOGLE_PAY
public static final PaymentMethod SOFORT
public static final PaymentMethod BANCONTACT
public static final PaymentMethod GIROPAY
public static final PaymentMethod DOTPAY
public static final PaymentMethod OTHER
public static final PaymentMethod UPI
public static final PaymentMethod NETBANKING_EMANDATES
public static final PaymentMethod CUSTOM
public static final PaymentMethod BOLETO
public static final PaymentMethod _UNKNOWN
public static PaymentMethod[] values()
for (PaymentMethod c : PaymentMethod.values()) System.out.println(c);
public static PaymentMethod 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.