Serializable, Comparable<BankAccountCountry>public enum BankAccountCountry extends Enum<BankAccountCountry>
| Modifier and Type | Method | Description |
|---|---|---|
static BankAccountCountry |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static BankAccountCountry[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName("JP")
public static final BankAccountCountry JP
@SerializedName("US")
public static final BankAccountCountry US
@SerializedName("CA")
public static final BankAccountCountry CA
public static BankAccountCountry[] values()
for (BankAccountCountry c : BankAccountCountry.values()) System.out.println(c);
public static BankAccountCountry 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 nullCopyright © 2018 The Apache Software Foundation. All rights reserved.