Package com.adyen.model.openbanking
Enum AccountVerificationCountry
- java.lang.Object
-
- java.lang.Enum<AccountVerificationCountry>
-
- com.adyen.model.openbanking.AccountVerificationCountry
-
- All Implemented Interfaces:
Serializable,Comparable<AccountVerificationCountry>
public enum AccountVerificationCountry extends Enum<AccountVerificationCountry>
Gets or Sets AccountVerificationCountry
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AccountVerificationCountryfromValue(String value)StringgetValue()StringtoString()static AccountVerificationCountryvalueOf(String name)Returns the enum constant of this type with the specified name.static AccountVerificationCountry[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SE
public static final AccountVerificationCountry SE
-
FI
public static final AccountVerificationCountry FI
-
NO
public static final AccountVerificationCountry NO
-
DK
public static final AccountVerificationCountry DK
-
NL
public static final AccountVerificationCountry NL
-
IT
public static final AccountVerificationCountry IT
-
DE
public static final AccountVerificationCountry DE
-
AT
public static final AccountVerificationCountry AT
-
ES
public static final AccountVerificationCountry ES
-
PT
public static final AccountVerificationCountry PT
-
FR
public static final AccountVerificationCountry FR
-
GB
public static final AccountVerificationCountry GB
-
BE
public static final AccountVerificationCountry BE
-
LV
public static final AccountVerificationCountry LV
-
LT
public static final AccountVerificationCountry LT
-
PL
public static final AccountVerificationCountry PL
-
EE
public static final AccountVerificationCountry EE
-
IE
public static final AccountVerificationCountry IE
-
US
public static final AccountVerificationCountry US
-
CA
public static final AccountVerificationCountry CA
-
AU
public static final AccountVerificationCountry AU
-
-
Method Detail
-
values
public static AccountVerificationCountry[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AccountVerificationCountry c : AccountVerificationCountry.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccountVerificationCountry valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<AccountVerificationCountry>
-
fromValue
public static AccountVerificationCountry fromValue(String value)
-
-