public enum SessionSourceType extends java.lang.Enum<SessionSourceType>
| Enum Constant and Description |
|---|
CARD |
ID |
NETWORK_TOKEN |
TOKEN |
| Modifier and Type | Method and Description |
|---|---|
static SessionSourceType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SessionSourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="card") public static final SessionSourceType CARD
@SerializedName(value="id") public static final SessionSourceType ID
@SerializedName(value="token") public static final SessionSourceType TOKEN
@SerializedName(value="network_token") public static final SessionSourceType NETWORK_TOKEN
public static SessionSourceType[] values()
for (SessionSourceType c : SessionSourceType.values()) System.out.println(c);
public static SessionSourceType 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