| Enum Constant and Description |
|---|
DOMESTIC |
EEA |
INTERNATIONAL |
INTRA |
INTRA_EEA |
INTRA_EUROPEAN_SEPA |
| Modifier and Type | Method and Description |
|---|---|
static Region |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Region[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="Domestic") public static final Region DOMESTIC
@SerializedName(value="Intra") public static final Region INTRA
@SerializedName(value="IntraEEA") public static final Region INTRA_EEA
@SerializedName(value="IntraEuropean_SEPA") public static final Region INTRA_EUROPEAN_SEPA
@SerializedName(value="International") public static final Region INTERNATIONAL
@SerializedName(value="EEA") public static final Region EEA
public static Region[] values()
for (Region c : Region.values()) System.out.println(c);
public static Region 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 null