public enum PaymentMethodsType extends java.lang.Enum<PaymentMethodsType>
| Enum Constant and Description |
|---|
APPLEPAY |
BANCONTACT |
CARD |
EPS |
GIROPAY |
GOOGLEPAY |
IDEAL |
KNET |
MULTIBANCO |
P24 |
PAYPAL |
SOFORT |
| Modifier and Type | Method and Description |
|---|---|
static PaymentMethodsType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PaymentMethodsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="applepay") public static final PaymentMethodsType APPLEPAY
@SerializedName(value="bancontact") public static final PaymentMethodsType BANCONTACT
@SerializedName(value="card") public static final PaymentMethodsType CARD
@SerializedName(value="eps") public static final PaymentMethodsType EPS
@SerializedName(value="giropay") public static final PaymentMethodsType GIROPAY
@SerializedName(value="googlepay") public static final PaymentMethodsType GOOGLEPAY
@SerializedName(value="ideal") public static final PaymentMethodsType IDEAL
@SerializedName(value="knet") public static final PaymentMethodsType KNET
@SerializedName(value="multibanco") public static final PaymentMethodsType MULTIBANCO
@SerializedName(value="p24") public static final PaymentMethodsType P24
@SerializedName(value="paypal") public static final PaymentMethodsType PAYPAL
@SerializedName(value="sofort") public static final PaymentMethodsType SOFORT
public static PaymentMethodsType[] values()
for (PaymentMethodsType c : PaymentMethodsType.values()) System.out.println(c);
public static PaymentMethodsType 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