Enum TPEGLoc03ILCPointDescriptorSubtypeEnum
- java.lang.Object
-
- java.lang.Enum<TPEGLoc03ILCPointDescriptorSubtypeEnum>
-
- eu.datex2.siri14.schema._1_0._1_0.TPEGLoc03ILCPointDescriptorSubtypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TPEGLoc03ILCPointDescriptorSubtypeEnum>
public enum TPEGLoc03ILCPointDescriptorSubtypeEnum extends Enum<TPEGLoc03ILCPointDescriptorSubtypeEnum>
Java class for TPEGLoc03ILCPointDescriptorSubtypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TPEGLoc03ILCPointDescriptorSubtypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="tpegILCName1"/> <enumeration value="tpegILCName2"/> <enumeration value="tpegILCName3"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description TPEG_ILC_NAME_1The name of the road on which the junction point is located.TPEG_ILC_NAME_2The name of the first intersecting road at the junction.TPEG_ILC_NAME_3The name of the second intersecting road (if one exists) at the junction.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TPEGLoc03ILCPointDescriptorSubtypeEnumfromValue(String v)Stringvalue()static TPEGLoc03ILCPointDescriptorSubtypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static TPEGLoc03ILCPointDescriptorSubtypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TPEG_ILC_NAME_1
public static final TPEGLoc03ILCPointDescriptorSubtypeEnum TPEG_ILC_NAME_1
The name of the road on which the junction point is located.
-
TPEG_ILC_NAME_2
public static final TPEGLoc03ILCPointDescriptorSubtypeEnum TPEG_ILC_NAME_2
The name of the first intersecting road at the junction.
-
TPEG_ILC_NAME_3
public static final TPEGLoc03ILCPointDescriptorSubtypeEnum TPEG_ILC_NAME_3
The name of the second intersecting road (if one exists) at the junction.
-
-
Method Detail
-
values
public static TPEGLoc03ILCPointDescriptorSubtypeEnum[] 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 (TPEGLoc03ILCPointDescriptorSubtypeEnum c : TPEGLoc03ILCPointDescriptorSubtypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TPEGLoc03ILCPointDescriptorSubtypeEnum 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 TPEGLoc03ILCPointDescriptorSubtypeEnum fromValue(String v)
-
-