public enum PaymentMethodsTypeEnum extends java.lang.Enum<PaymentMethodsTypeEnum>
Java class for paymentMethodsTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="paymentMethodsTypeEnum">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Visa"/>
<enumeration value="MasterCard"/>
<enumeration value="Discover"/>
<enumeration value="AmericanExpress"/>
<enumeration value="DinersClub"/>
<enumeration value="JCB"/>
<enumeration value="EnRoute"/>
<enumeration value="Echeck"/>
<enumeration value="Paypal"/>
<enumeration value="VisaCheckout"/>
<enumeration value="ApplePay"/>
<enumeration value="AndroidPay"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AMERICAN_EXPRESS |
ANDROID_PAY |
APPLE_PAY |
DINERS_CLUB |
DISCOVER |
ECHECK |
EN_ROUTE |
JCB |
MASTER_CARD |
PAYPAL |
VISA |
VISA_CHECKOUT |
| Modifier and Type | Method and Description |
|---|---|
static PaymentMethodsTypeEnum |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static PaymentMethodsTypeEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PaymentMethodsTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentMethodsTypeEnum VISA
public static final PaymentMethodsTypeEnum MASTER_CARD
public static final PaymentMethodsTypeEnum DISCOVER
public static final PaymentMethodsTypeEnum AMERICAN_EXPRESS
public static final PaymentMethodsTypeEnum DINERS_CLUB
public static final PaymentMethodsTypeEnum JCB
public static final PaymentMethodsTypeEnum EN_ROUTE
public static final PaymentMethodsTypeEnum ECHECK
public static final PaymentMethodsTypeEnum PAYPAL
public static final PaymentMethodsTypeEnum VISA_CHECKOUT
public static final PaymentMethodsTypeEnum APPLE_PAY
public static final PaymentMethodsTypeEnum ANDROID_PAY
public static PaymentMethodsTypeEnum[] values()
for (PaymentMethodsTypeEnum c : PaymentMethodsTypeEnum.values()) System.out.println(c);
public static PaymentMethodsTypeEnum 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 nullpublic java.lang.String value()
public static PaymentMethodsTypeEnum fromValue(java.lang.String v)
Copyright © 2018. All Rights Reserved.