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