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