public enum PaymentAmountCurrency extends Enum<PaymentAmountCurrency>
Modifier and Type | Class and Description |
---|---|
static class |
PaymentAmountCurrency.Adapter |
Enum Constant and Description |
---|
DKK |
ENUM_UNKNOWN |
EUR |
GBP |
NOK |
PLN |
SEK |
Modifier and Type | Method and Description |
---|---|
static PaymentAmountCurrency |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static PaymentAmountCurrency |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentAmountCurrency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentAmountCurrency GBP
public static final PaymentAmountCurrency EUR
public static final PaymentAmountCurrency PLN
public static final PaymentAmountCurrency SEK
public static final PaymentAmountCurrency DKK
public static final PaymentAmountCurrency NOK
public static final PaymentAmountCurrency ENUM_UNKNOWN
public static PaymentAmountCurrency[] values()
for (PaymentAmountCurrency c : PaymentAmountCurrency.values()) System.out.println(c);
public static PaymentAmountCurrency valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getValue()
public String toString()
toString
in class Enum<PaymentAmountCurrency>
public static PaymentAmountCurrency fromValue(String value)
Copyright © 2017–2024 Plaid Inc.. All rights reserved.