public enum NetworkTokenType extends java.lang.Enum<NetworkTokenType>
| Modifier and Type | Method and Description |
|---|---|
static NetworkTokenType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NetworkTokenType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="vts") public static final NetworkTokenType VTS
@SerializedName(value="mdes") public static final NetworkTokenType MDES
@SerializedName(value="applepay") public static final NetworkTokenType APPLEPAY
@SerializedName(value="googlepay") public static final NetworkTokenType GOOGLEPAY
public static NetworkTokenType[] values()
for (NetworkTokenType c : NetworkTokenType.values()) System.out.println(c);
public static NetworkTokenType 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