public enum SessionScheme extends java.lang.Enum<SessionScheme>
| Enum Constant and Description |
|---|
AMEX |
CARTES_BANCAIRES |
DINERS |
JCB |
MASTERCARD |
VISA |
| Modifier and Type | Method and Description |
|---|---|
static SessionScheme |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SessionScheme[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="visa") public static final SessionScheme VISA
@SerializedName(value="mastercard") public static final SessionScheme MASTERCARD
@SerializedName(value="jcb") public static final SessionScheme JCB
@SerializedName(value="amex") public static final SessionScheme AMEX
@SerializedName(value="diners") public static final SessionScheme DINERS
@SerializedName(value="cartes_bancaires") public static final SessionScheme CARTES_BANCAIRES
public static SessionScheme[] values()
for (SessionScheme c : SessionScheme.values()) System.out.println(c);
public static SessionScheme 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