public static enum Payment.Currency extends java.lang.Enum<Payment.Currency>
Modifier and Type | Method and Description |
---|---|
static Payment.Currency |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Payment.Currency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="AUD") public static final Payment.Currency AUD
@SerializedName(value="DKK") public static final Payment.Currency DKK
@SerializedName(value="EUR") public static final Payment.Currency EUR
@SerializedName(value="GBP") public static final Payment.Currency GBP
@SerializedName(value="NZD") public static final Payment.Currency NZD
@SerializedName(value="SEK") public static final Payment.Currency SEK
public static Payment.Currency[] values()
for (Payment.Currency c : Payment.Currency.values()) System.out.println(c);
public static Payment.Currency 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