public enum RequestType extends java.lang.Enum<RequestType>
| Enum Constant and Description |
|---|
ACCOUNT_VERIFICATION |
ADD_CARD |
INSTALLMENT_TRANSACTION |
MAIL_ORDER |
MAINTAIN_CARD_INFORMATION |
OTHER_PAYMENT |
RECURRING_TRANSACTION |
SPLIT_OR_DELAYED_SHIPMENT |
TELEPHONE_ORDER |
TOP_UP |
WHITELIST_STATUS_CHECK |
| Modifier and Type | Method and Description |
|---|---|
static RequestType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RequestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="account_verification") public static final RequestType ACCOUNT_VERIFICATION
@SerializedName(value="add_card") public static final RequestType ADD_CARD
@SerializedName(value="installment_transaction") public static final RequestType INSTALLMENT_TRANSACTION
@SerializedName(value="mail_order") public static final RequestType MAIL_ORDER
@SerializedName(value="maintain_card_information") public static final RequestType MAINTAIN_CARD_INFORMATION
@SerializedName(value="other_payment") public static final RequestType OTHER_PAYMENT
@SerializedName(value="recurring_transaction") public static final RequestType RECURRING_TRANSACTION
@SerializedName(value="split_or_delayed_shipment") public static final RequestType SPLIT_OR_DELAYED_SHIPMENT
@SerializedName(value="telephone_order") public static final RequestType TELEPHONE_ORDER
@SerializedName(value="top_up") public static final RequestType TOP_UP
@SerializedName(value="whitelist_status_check") public static final RequestType WHITELIST_STATUS_CHECK
public static RequestType[] values()
for (RequestType c : RequestType.values()) System.out.println(c);
public static RequestType 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 null