values
This page's content:
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:
Copy
for (EBANXCountry c : EBANXCountry.values())
System.out.println(c);
Declaration
Copy
public static EBANXCountry[] values()
Return
countries
string
Array containing the constants of this enum type, in the order they are declared.