public enum OfflinePaymentMethod extends Enum<OfflinePaymentMethod>
| Enum Constant and Description |
|---|
_UNKNOWN |
ACH_CREDIT |
BANK_TRANSFER |
BOLETO |
CASH |
CHECK |
NO_PREFERENCE |
SEPA_CREDIT |
| Modifier and Type | Method and Description |
|---|---|
static OfflinePaymentMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OfflinePaymentMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OfflinePaymentMethod NO_PREFERENCE
public static final OfflinePaymentMethod CASH
public static final OfflinePaymentMethod CHECK
public static final OfflinePaymentMethod BANK_TRANSFER
public static final OfflinePaymentMethod ACH_CREDIT
public static final OfflinePaymentMethod SEPA_CREDIT
public static final OfflinePaymentMethod BOLETO
public static final OfflinePaymentMethod _UNKNOWN
public static OfflinePaymentMethod[] values()
for (OfflinePaymentMethod c : OfflinePaymentMethod.values()) System.out.println(c);
public static OfflinePaymentMethod 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.