public enum PaymentParametersRequired extends java.lang.Enum<PaymentParametersRequired>
Enum Constant and Description |
---|
FULL_REQUEST |
SIMPLIFIED_REQUEST |
SIMPLIFIED_REQUEST_AND_PAYMENT_PAGE |
Modifier and Type | Method and Description |
---|---|
static PaymentParametersRequired |
forCode(int code) |
int |
getValue() |
static PaymentParametersRequired |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PaymentParametersRequired[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentParametersRequired FULL_REQUEST
public static final PaymentParametersRequired SIMPLIFIED_REQUEST
public static final PaymentParametersRequired SIMPLIFIED_REQUEST_AND_PAYMENT_PAGE
public static PaymentParametersRequired[] values()
for (PaymentParametersRequired c : PaymentParametersRequired.values()) System.out.println(c);
public static PaymentParametersRequired 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 int getValue()
public static PaymentParametersRequired forCode(int code)