public enum PaymentMeanBrand extends java.lang.Enum<PaymentMeanBrand>
| Enum Constant and Description |
|---|
AMEX |
BCMC |
CB |
CBCONLINE |
ELV |
IDEAL |
IGNHOMEPAY |
KBCONLINE |
MAESTRO |
MASTERCARD |
MASTERPASS |
PAYPAL |
PAYTRAIL |
SOFORTUBERWEISUNG |
VISA |
VPAY |
| Modifier and Type | Method and Description |
|---|---|
static PaymentMeanBrand |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PaymentMeanBrand[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentMeanBrand AMEX
public static final PaymentMeanBrand BCMC
public static final PaymentMeanBrand CB
public static final PaymentMeanBrand CBCONLINE
public static final PaymentMeanBrand ELV
public static final PaymentMeanBrand IDEAL
public static final PaymentMeanBrand IGNHOMEPAY
public static final PaymentMeanBrand KBCONLINE
public static final PaymentMeanBrand MAESTRO
public static final PaymentMeanBrand MASTERCARD
public static final PaymentMeanBrand MASTERPASS
public static final PaymentMeanBrand PAYPAL
public static final PaymentMeanBrand PAYTRAIL
public static final PaymentMeanBrand SOFORTUBERWEISUNG
public static final PaymentMeanBrand VISA
public static final PaymentMeanBrand VPAY
public static PaymentMeanBrand[] values()
for (PaymentMeanBrand c : PaymentMeanBrand.values()) System.out.println(c);
public static PaymentMeanBrand valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null