Enum TPEGLoc04HeightTypeEnum
- java.lang.Object
-
- java.lang.Enum<TPEGLoc04HeightTypeEnum>
-
- eu.datex2.siri14.schema._1_0._1_0.TPEGLoc04HeightTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TPEGLoc04HeightTypeEnum>
public enum TPEGLoc04HeightTypeEnum extends Enum<TPEGLoc04HeightTypeEnum>
Java class for TPEGLoc04HeightTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TPEGLoc04HeightTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="above"/> <enumeration value="aboveSeaLevel"/> <enumeration value="aboveStreetLevel"/> <enumeration value="at"/> <enumeration value="atSeaLevel"/> <enumeration value="atStreetLevel"/> <enumeration value="below"/> <enumeration value="belowSeaLevel"/> <enumeration value="belowStreetLevel"/> <enumeration value="undefined"/> <enumeration value="unknown"/> <enumeration value="other"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABOVEHeight above specified location.ABOVE_SEA_LEVELHeight above mean sea high water level.ABOVE_STREET_LEVELHeight above street level.ATAt height of specified location.AT_SEA_LEVELAt mean sea high water level.AT_STREET_LEVELAt street level.BELOWHeight below specified location.BELOW_SEA_LEVELHeight below mean sea high water level.BELOW_STREET_LEVELHeight below street level.OTHEROther than as defined in this enumeration.UNDEFINEDUndefined height reference.UNKNOWNUnknown height reference.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TPEGLoc04HeightTypeEnumfromValue(String v)Stringvalue()static TPEGLoc04HeightTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static TPEGLoc04HeightTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ABOVE
public static final TPEGLoc04HeightTypeEnum ABOVE
Height above specified location.
-
ABOVE_SEA_LEVEL
public static final TPEGLoc04HeightTypeEnum ABOVE_SEA_LEVEL
Height above mean sea high water level.
-
ABOVE_STREET_LEVEL
public static final TPEGLoc04HeightTypeEnum ABOVE_STREET_LEVEL
Height above street level.
-
AT
public static final TPEGLoc04HeightTypeEnum AT
At height of specified location.
-
AT_SEA_LEVEL
public static final TPEGLoc04HeightTypeEnum AT_SEA_LEVEL
At mean sea high water level.
-
AT_STREET_LEVEL
public static final TPEGLoc04HeightTypeEnum AT_STREET_LEVEL
At street level.
-
BELOW
public static final TPEGLoc04HeightTypeEnum BELOW
Height below specified location.
-
BELOW_SEA_LEVEL
public static final TPEGLoc04HeightTypeEnum BELOW_SEA_LEVEL
Height below mean sea high water level.
-
BELOW_STREET_LEVEL
public static final TPEGLoc04HeightTypeEnum BELOW_STREET_LEVEL
Height below street level.
-
UNDEFINED
public static final TPEGLoc04HeightTypeEnum UNDEFINED
Undefined height reference.
-
UNKNOWN
public static final TPEGLoc04HeightTypeEnum UNKNOWN
Unknown height reference.
-
OTHER
public static final TPEGLoc04HeightTypeEnum OTHER
Other than as defined in this enumeration.
-
-
Method Detail
-
values
public static TPEGLoc04HeightTypeEnum[] 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 (TPEGLoc04HeightTypeEnum c : TPEGLoc04HeightTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TPEGLoc04HeightTypeEnum 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 TPEGLoc04HeightTypeEnum fromValue(String v)
-
-