| Enum Constant and Description |
|---|
ALL |
AR |
BO |
BR |
CL |
CO |
CR |
CU |
DO |
EC |
GT |
HN |
MX |
NI |
PA |
PE |
PR |
PY |
SV |
UY |
VE |
| Modifier and Type | Method and Description |
|---|---|
static Country |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Country[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Country ALL
public static final Country AR
public static final Country BO
public static final Country BR
public static final Country CU
public static final Country CL
public static final Country CO
public static final Country CR
public static final Country DO
public static final Country SV
public static final Country EC
public static final Country GT
public static final Country HN
public static final Country MX
public static final Country NI
public static final Country PA
public static final Country PE
public static final Country PR
public static final Country PY
public static final Country UY
public static final Country VE
public static Country[] values()
for (Country c : Country.values()) System.out.println(c);
public static Country 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