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