public static enum Payment.EnumPaymentType extends Enum<Payment.EnumPaymentType>
Enum Constant and Description |
---|
BankTransfer |
Contract |
CreditCard |
DebitCard |
DigitalCurrency |
Invoice |
Other |
PaymentProvider |
Modifier and Type | Method and Description |
---|---|
static Payment.EnumPaymentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Payment.EnumPaymentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Payment.EnumPaymentType BankTransfer
public static final Payment.EnumPaymentType Contract
public static final Payment.EnumPaymentType CreditCard
public static final Payment.EnumPaymentType DebitCard
public static final Payment.EnumPaymentType DigitalCurrency
public static final Payment.EnumPaymentType Invoice
public static final Payment.EnumPaymentType PaymentProvider
public static final Payment.EnumPaymentType Other
public static Payment.EnumPaymentType[] values()
for (Payment.EnumPaymentType c : Payment.EnumPaymentType.values()) System.out.println(c);
public static Payment.EnumPaymentType 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 © 2019. All rights reserved.