public enum PaymentParamEnum extends Enum<PaymentParamEnum>
Java class for paymentParamEnum.
The following schema fragment specifies the expected content contained within this class.
| Enum Constant and Description |
|---|
CONTACT_EMAIL |
ORDER_IDENTIFIER |
RETURN_URL |
| Modifier and Type | Method and Description |
|---|---|
static PaymentParamEnum |
fromValue(String v) |
String |
value() |
static PaymentParamEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentParamEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentParamEnum RETURN_URL
public static final PaymentParamEnum ORDER_IDENTIFIER
public static final PaymentParamEnum CONTACT_EMAIL
public static PaymentParamEnum[] values()
for (PaymentParamEnum c : PaymentParamEnum.values()) System.out.println(c);
public static PaymentParamEnum 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 nullpublic String value()
public static PaymentParamEnum fromValue(String v)
Copyright © 2021. All rights reserved.