Serializable, Comparable<Gateway>public enum Gateway extends Enum<Gateway>
| Enum Constant | Description |
|---|---|
ALIPAY |
|
ALLIED_WALLET |
|
ALLIED_WALLET_NEXT_GEN |
|
DENSAN |
|
IPS |
|
MEIKO_PAY |
|
NCCC |
|
PAYVISION |
|
QQ |
|
TEST |
|
WIRECARD |
|
WORLD_PAY |
| Modifier and Type | Method | Description |
|---|---|---|
static Gateway |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static Gateway[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName("payvision")
public static final Gateway PAYVISION
@SerializedName("wirecard")
public static final Gateway WIRECARD
@SerializedName("world_pay")
public static final Gateway WORLD_PAY
@SerializedName("allied_wallet")
public static final Gateway ALLIED_WALLET
@SerializedName("allied_wallet_next_gen")
public static final Gateway ALLIED_WALLET_NEXT_GEN
@SerializedName("nccc")
public static final Gateway NCCC
@SerializedName("meiko_pay")
public static final Gateway MEIKO_PAY
@SerializedName("alipay")
public static final Gateway ALIPAY
@SerializedName("qq")
public static final Gateway QQ
@SerializedName("densan")
public static final Gateway DENSAN
@SerializedName("ips")
public static final Gateway IPS
@SerializedName("test")
public static final Gateway TEST
public static Gateway[] values()
for (Gateway c : Gateway.values()) System.out.println(c);
public static Gateway 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 nullCopyright © 2018 The Apache Software Foundation. All rights reserved.