Enum CountryEnum
- java.lang.Object
-
- java.lang.Enum<CountryEnum>
-
- eu.datex2.siri14.schema._1_0._1_0.CountryEnum
-
- All Implemented Interfaces:
Serializable,Comparable<CountryEnum>
public enum CountryEnum extends Enum<CountryEnum>
Java class for CountryEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CountryEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="at"/> <enumeration value="be"/> <enumeration value="bg"/> <enumeration value="ch"/> <enumeration value="cs"/> <enumeration value="cy"/> <enumeration value="cz"/> <enumeration value="de"/> <enumeration value="dk"/> <enumeration value="ee"/> <enumeration value="es"/> <enumeration value="fi"/> <enumeration value="fo"/> <enumeration value="fr"/> <enumeration value="gb"/> <enumeration value="gg"/> <enumeration value="gi"/> <enumeration value="gr"/> <enumeration value="hr"/> <enumeration value="hu"/> <enumeration value="ie"/> <enumeration value="im"/> <enumeration value="is"/> <enumeration value="it"/> <enumeration value="je"/> <enumeration value="li"/> <enumeration value="lt"/> <enumeration value="lu"/> <enumeration value="lv"/> <enumeration value="ma"/> <enumeration value="mc"/> <enumeration value="mk"/> <enumeration value="mt"/> <enumeration value="nl"/> <enumeration value="no"/> <enumeration value="pl"/> <enumeration value="pt"/> <enumeration value="ro"/> <enumeration value="se"/> <enumeration value="si"/> <enumeration value="sk"/> <enumeration value="sm"/> <enumeration value="tr"/> <enumeration value="va"/> <enumeration value="other"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ATAustriaBEBelgiumBGBulgariaCHSwitzerlandCSSerbia and MontenegroCYCyprusCZCzech RepublicDEGermanyDKDenmarkEEEstoniaESSpainFIFinlandFOFaroe IslandsFRFranceGBGreat BritainGGGuernseyGIGibraltaGRGreeceHRCroatiaHUHungaryIEIrelandIMIsle Of ManISIcelandITItalyJEJerseyLILichtensteinLTLithuaniaLULuxembourgLVLatviaMAMoroccoMCMonacoMKMacedoniaMTMaltaNLNetherlandsNONorwayOTHEROther than as defined in this enumeration.PLPolandPTPortugalRORomaniaSESwedenSISloveniaSKSlovakiaSMSan MarinoTRTurkeyVAVatican City State
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CountryEnumfromValue(String v)Stringvalue()static CountryEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static CountryEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AT
public static final CountryEnum AT
Austria
-
BE
public static final CountryEnum BE
Belgium
-
BG
public static final CountryEnum BG
Bulgaria
-
CH
public static final CountryEnum CH
Switzerland
-
CS
public static final CountryEnum CS
Serbia and Montenegro
-
CY
public static final CountryEnum CY
Cyprus
-
CZ
public static final CountryEnum CZ
Czech Republic
-
DE
public static final CountryEnum DE
Germany
-
DK
public static final CountryEnum DK
Denmark
-
EE
public static final CountryEnum EE
Estonia
-
ES
public static final CountryEnum ES
Spain
-
FI
public static final CountryEnum FI
Finland
-
FO
public static final CountryEnum FO
Faroe Islands
-
FR
public static final CountryEnum FR
France
-
GB
public static final CountryEnum GB
Great Britain
-
GG
public static final CountryEnum GG
Guernsey
-
GI
public static final CountryEnum GI
Gibralta
-
GR
public static final CountryEnum GR
Greece
-
HR
public static final CountryEnum HR
Croatia
-
HU
public static final CountryEnum HU
Hungary
-
IE
public static final CountryEnum IE
Ireland
-
IM
public static final CountryEnum IM
Isle Of Man
-
IS
public static final CountryEnum IS
Iceland
-
IT
public static final CountryEnum IT
Italy
-
JE
public static final CountryEnum JE
Jersey
-
LI
public static final CountryEnum LI
Lichtenstein
-
LT
public static final CountryEnum LT
Lithuania
-
LU
public static final CountryEnum LU
Luxembourg
-
LV
public static final CountryEnum LV
Latvia
-
MA
public static final CountryEnum MA
Morocco
-
MC
public static final CountryEnum MC
Monaco
-
MK
public static final CountryEnum MK
Macedonia
-
MT
public static final CountryEnum MT
Malta
-
NL
public static final CountryEnum NL
Netherlands
-
NO
public static final CountryEnum NO
Norway
-
PL
public static final CountryEnum PL
Poland
-
PT
public static final CountryEnum PT
Portugal
-
RO
public static final CountryEnum RO
Romania
-
SE
public static final CountryEnum SE
Sweden
-
SI
public static final CountryEnum SI
Slovenia
-
SK
public static final CountryEnum SK
Slovakia
-
SM
public static final CountryEnum SM
San Marino
-
TR
public static final CountryEnum TR
Turkey
-
VA
public static final CountryEnum VA
Vatican City State
-
OTHER
public static final CountryEnum OTHER
Other than as defined in this enumeration.
-
-
Method Detail
-
values
public static CountryEnum[] values()
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:for (CountryEnum c : CountryEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CountryEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static CountryEnum fromValue(String v)
-
-