public enum PaymentInstrument extends Enum<PaymentInstrument>
| Enum Constant and Description |
|---|
ACCOUNT |
BANK_ACCOUNT |
BITCOIN |
COUPON |
GOPAY |
MASTERPASS |
MPAYMENT |
PAYMENT_CARD |
PAYPAL |
PAYSAFECARD |
PRSMS |
SUPERCASH |
| Modifier and Type | Method and Description |
|---|---|
static PaymentInstrument |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentInstrument[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentInstrument PAYMENT_CARD
public static final PaymentInstrument BANK_ACCOUNT
public static final PaymentInstrument PRSMS
public static final PaymentInstrument MPAYMENT
public static final PaymentInstrument COUPON
public static final PaymentInstrument PAYSAFECARD
public static final PaymentInstrument SUPERCASH
public static final PaymentInstrument GOPAY
public static final PaymentInstrument PAYPAL
public static final PaymentInstrument BITCOIN
public static final PaymentInstrument MASTERPASS
public static final PaymentInstrument ACCOUNT
public static PaymentInstrument[] values()
for (PaymentInstrument c : PaymentInstrument.values()) System.out.println(c);
public static PaymentInstrument 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 © 2016. All rights reserved.