Enum TpegLoc03AreaDescriptorSubtypeEnum
- java.lang.Object
-
- java.lang.Enum<TpegLoc03AreaDescriptorSubtypeEnum>
-
- eu.datex2.siri20.schema._2_0rc1._2_0.TpegLoc03AreaDescriptorSubtypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TpegLoc03AreaDescriptorSubtypeEnum>
public enum TpegLoc03AreaDescriptorSubtypeEnum extends Enum<TpegLoc03AreaDescriptorSubtypeEnum>
Java class for TpegLoc03AreaDescriptorSubtypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TpegLoc03AreaDescriptorSubtypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="administrativeAreaName"/> <enumeration value="administrativeReferenceName"/> <enumeration value="areaName"/> <enumeration value="countyName"/> <enumeration value="lakeName"/> <enumeration value="nationName"/> <enumeration value="policeForceControlAreaName"/> <enumeration value="regionName"/> <enumeration value="seaName"/> <enumeration value="townName"/> <enumeration value="other"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADMINISTRATIVE_AREA_NAMEADMINISTRATIVE_REFERENCE_NAMEAREA_NAMECOUNTY_NAMELAKE_NAMENATION_NAMEOTHERPOLICE_FORCE_CONTROL_AREA_NAMEREGION_NAMESEA_NAMETOWN_NAME
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TpegLoc03AreaDescriptorSubtypeEnumfromValue(String v)Stringvalue()static TpegLoc03AreaDescriptorSubtypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static TpegLoc03AreaDescriptorSubtypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADMINISTRATIVE_AREA_NAME
public static final TpegLoc03AreaDescriptorSubtypeEnum ADMINISTRATIVE_AREA_NAME
-
ADMINISTRATIVE_REFERENCE_NAME
public static final TpegLoc03AreaDescriptorSubtypeEnum ADMINISTRATIVE_REFERENCE_NAME
-
AREA_NAME
public static final TpegLoc03AreaDescriptorSubtypeEnum AREA_NAME
-
COUNTY_NAME
public static final TpegLoc03AreaDescriptorSubtypeEnum COUNTY_NAME
-
LAKE_NAME
public static final TpegLoc03AreaDescriptorSubtypeEnum LAKE_NAME
-
NATION_NAME
public static final TpegLoc03AreaDescriptorSubtypeEnum NATION_NAME
-
POLICE_FORCE_CONTROL_AREA_NAME
public static final TpegLoc03AreaDescriptorSubtypeEnum POLICE_FORCE_CONTROL_AREA_NAME
-
REGION_NAME
public static final TpegLoc03AreaDescriptorSubtypeEnum REGION_NAME
-
SEA_NAME
public static final TpegLoc03AreaDescriptorSubtypeEnum SEA_NAME
-
TOWN_NAME
public static final TpegLoc03AreaDescriptorSubtypeEnum TOWN_NAME
-
OTHER
public static final TpegLoc03AreaDescriptorSubtypeEnum OTHER
-
-
Method Detail
-
values
public static TpegLoc03AreaDescriptorSubtypeEnum[] 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 (TpegLoc03AreaDescriptorSubtypeEnum c : TpegLoc03AreaDescriptorSubtypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TpegLoc03AreaDescriptorSubtypeEnum 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 TpegLoc03AreaDescriptorSubtypeEnum fromValue(String v)
-
-