public enum PaymentMeanType extends java.lang.Enum<PaymentMeanType>
| Enum Constant and Description |
|---|
CARD |
CREDIT_TRANSFER |
DIRECT_DEBIT |
EMPTY |
| Modifier and Type | Method and Description |
|---|---|
static PaymentMeanType |
fromValue(java.lang.String value) |
static PaymentMeanType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PaymentMeanType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentMeanType CARD
public static final PaymentMeanType CREDIT_TRANSFER
public static final PaymentMeanType DIRECT_DEBIT
public static final PaymentMeanType EMPTY
public static PaymentMeanType[] values()
for (PaymentMeanType c : PaymentMeanType.values()) System.out.println(c);
public static PaymentMeanType 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 static PaymentMeanType fromValue(java.lang.String value)