@Deprecated public enum PaymentMethod extends java.lang.Enum<PaymentMethod>
| Enum Constant and Description |
|---|
CREDIT_CARD
Deprecated.
|
E_CHECK
Deprecated.
|
UNKNOWN
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getMethod()
Deprecated.
|
static PaymentMethod |
valueOf(java.lang.String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static PaymentMethod[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentMethod CREDIT_CARD
public static final PaymentMethod E_CHECK
public static final PaymentMethod UNKNOWN
public static PaymentMethod[] values()
for (PaymentMethod c : PaymentMethod.values()) System.out.println(c);
public static PaymentMethod 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 getMethod()
Copyright © 2018. All Rights Reserved.