Enum TpegLoc04HeightTypeEnum
- java.lang.Object
-
- java.lang.Enum<TpegLoc04HeightTypeEnum>
-
- eu.datex2.siri21.schema._2_0rc1._2_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 ABOVEABOVE_SEA_LEVELABOVE_STREET_LEVELATAT_SEA_LEVELAT_STREET_LEVELBELOWBELOW_SEA_LEVELBELOW_STREET_LEVELOTHERUNDEFINEDUNKNOWN
-
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
-
ABOVE_SEA_LEVEL
public static final TpegLoc04HeightTypeEnum ABOVE_SEA_LEVEL
-
ABOVE_STREET_LEVEL
public static final TpegLoc04HeightTypeEnum ABOVE_STREET_LEVEL
-
AT
public static final TpegLoc04HeightTypeEnum AT
-
AT_SEA_LEVEL
public static final TpegLoc04HeightTypeEnum AT_SEA_LEVEL
-
AT_STREET_LEVEL
public static final TpegLoc04HeightTypeEnum AT_STREET_LEVEL
-
BELOW
public static final TpegLoc04HeightTypeEnum BELOW
-
BELOW_SEA_LEVEL
public static final TpegLoc04HeightTypeEnum BELOW_SEA_LEVEL
-
BELOW_STREET_LEVEL
public static final TpegLoc04HeightTypeEnum BELOW_STREET_LEVEL
-
UNDEFINED
public static final TpegLoc04HeightTypeEnum UNDEFINED
-
UNKNOWN
public static final TpegLoc04HeightTypeEnum UNKNOWN
-
OTHER
public static final TpegLoc04HeightTypeEnum OTHER
-
-
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)
-
-