public enum COUNTRY_CODE extends java.lang.Enum<COUNTRY_CODE>
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static COUNTRY_CODE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static COUNTRY_CODE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final COUNTRY_CODE COUNTRY_CODE_UNSPECIFIED
public static final COUNTRY_CODE COUNTRY_ALBANIA
public static final COUNTRY_CODE COUNTRY_UNITED_STATES
public static final COUNTRY_CODE COUNTRY_UNITED_ARAB_EMIRATES
public static final COUNTRY_CODE COUNTRY_AREGNTINA
public static final COUNTRY_CODE COUNTRY_AUSTRALIA
public static final COUNTRY_CODE COUNTRY_AUSTRIA
public static final COUNTRY_CODE COUNTRY_BANGLADESH
public static final COUNTRY_CODE COUNTRY_BELGIUM
public static final COUNTRY_CODE COUNTRY_BOLIVIA
public static final COUNTRY_CODE COUNTRY_BOSNIA
public static final COUNTRY_CODE COUNTRY_BRAZIL
public static final COUNTRY_CODE COUNTRY_BULGARIA
public static final COUNTRY_CODE COUNTRY_CANADA
public static final COUNTRY_CODE COUNTRY_CHILE
public static final COUNTRY_CODE COUNTRY_CHINA
public static final COUNTRY_CODE COUNTRY_COLOMBIA
public static final COUNTRY_CODE COUNTRY_COSTARICA
public static final COUNTRY_CODE COUNTRY_CROATIA
public static final COUNTRY_CODE COUNTRY_CYPRUS
public static final COUNTRY_CODE COUNTRY_CZECH_REPUBLIC
public static final COUNTRY_CODE COUNTRY_DENMARK
public static final COUNTRY_CODE COUNTRY_DOMINICAN_REPUBLIC
public static final COUNTRY_CODE COUNTRY_ECUADOR
public static final COUNTRY_CODE COUNTRY_EL_SALVADOR
public static final COUNTRY_CODE COUNTRY_ESTONIA
public static final COUNTRY_CODE COUNTRY_FINLAND
public static final COUNTRY_CODE COUNTRY_FRANCE
public static final COUNTRY_CODE COUNTRY_GEORGIA
public static final COUNTRY_CODE COUNTRY_GERMANY
public static final COUNTRY_CODE COUNTRY_GREECE
public static final COUNTRY_CODE COUNTRY_GUATEMALA
public static final COUNTRY_CODE COUNTRY_HONG_KONG
public static final COUNTRY_CODE COUNTRY_HONDURAS
public static final COUNTRY_CODE COUNTRY_HUNGARY
public static final COUNTRY_CODE COUNTRY_ICELAND
public static final COUNTRY_CODE COUNTRY_INDIA
public static final COUNTRY_CODE COUNTRY_INDONESIA
public static final COUNTRY_CODE COUNTRY_IRELAND
public static final COUNTRY_CODE COUNTRY_ITALY
public static final COUNTRY_CODE COUNTRY_JAPAN
public static final COUNTRY_CODE COUNTRY_KOREA
public static final COUNTRY_CODE COUNTRY_LATVIA
public static final COUNTRY_CODE COUNTRY_LIECHTENSTEIN
public static final COUNTRY_CODE COUNTRY_LITHUANIA
public static final COUNTRY_CODE COUNTRY_LUXEMBOURG
public static final COUNTRY_CODE COUNTRY_MALTA
public static final COUNTRY_CODE COUNTRY_MEXICO
public static final COUNTRY_CODE COUNTRY_MALAYSIA
public static final COUNTRY_CODE COUNTRY_MOLDOVA
public static final COUNTRY_CODE COUNTRY_NICARAGUA
public static final COUNTRY_CODE COUNTRY_NETHERLANDS
public static final COUNTRY_CODE COUNTRY_NEW_ZEALAND
public static final COUNTRY_CODE COUNTRY_NORWAY
public static final COUNTRY_CODE COUNTRY_PERU
public static final COUNTRY_CODE COUNTRY_PHILIPPINES
public static final COUNTRY_CODE COUNTRY_POLAND
public static final COUNTRY_CODE COUNTRY_PORTUGAL
public static final COUNTRY_CODE COUNTRY_PUERTO_RICO
public static final COUNTRY_CODE COUNTRY_ROMANIA
public static final COUNTRY_CODE COUNTRY_RUSSIA
public static final COUNTRY_CODE COUNTRY_SAUDI_ARABIA
public static final COUNTRY_CODE COUNTRY_SINGAPORE
public static final COUNTRY_CODE COUNTRY_SLOVAKIA
public static final COUNTRY_CODE COUNTRY_SLOVENIA
public static final COUNTRY_CODE COUNTRY_SPAIN
public static final COUNTRY_CODE COUNTRY_SWITZERLAND
public static final COUNTRY_CODE COUNTRY_SWEDEN
public static final COUNTRY_CODE COUNTRY_TAIWAN
public static final COUNTRY_CODE COUNTRY_THAILAND
public static final COUNTRY_CODE COUNTRY_TURKEY
public static final COUNTRY_CODE COUNTRY_GREAT_BRITAIN
public static final COUNTRY_CODE COUNTRY_URUGUAY
public static final COUNTRY_CODE COUNTRY_VENEZUELA
public static final COUNTRY_CODE COUNTRY_VIETNAM
public static final COUNTRY_CODE COUNTRY_VIRGIN_ISLANDS
public static final COUNTRY_CODE COUNTRY_SOUTH_AFRICA
public static COUNTRY_CODE[] values()
for (COUNTRY_CODE c : COUNTRY_CODE.values()) System.out.println(c);
public static COUNTRY_CODE 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 nullpublic int getCode()