Package uk.org.ifopt.siri13
Enum BoardingPositionTypeEnumeration
- java.lang.Object
-
- java.lang.Enum<BoardingPositionTypeEnumeration>
-
- uk.org.ifopt.siri13.BoardingPositionTypeEnumeration
-
- All Implemented Interfaces:
Serializable,Comparable<BoardingPositionTypeEnumeration>
public enum BoardingPositionTypeEnumeration extends Enum<BoardingPositionTypeEnumeration>
Java class for BoardingPositionTypeEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="BoardingPositionTypeEnumeration"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="unknown"/> <enumeration value="doorFromAirlineGate"/> <enumeration value="positionOnRailPlatform"/> <enumeration value="positionOnMetroPlatform"/> <enumeration value="positionAtCoachStop"/> <enumeration value="positionAtBusStop"/> <enumeration value="boatGangway"/> <enumeration value="ferryGangway"/> <enumeration value="telecabinePlatfrom"/> <enumeration value="setDownPoint"/> <enumeration value="taxiBay"/> <enumeration value="other"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOAT_GANGWAYDOOR_FROM_AIRLINE_GATEFERRY_GANGWAYOTHERPOSITION_AT_BUS_STOPPOSITION_AT_COACH_STOPPOSITION_ON_METRO_PLATFORMPOSITION_ON_RAIL_PLATFORMSET_DOWN_POINTTAXI_BAYTELECABINE_PLATFROMUNKNOWN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BoardingPositionTypeEnumerationfromValue(String v)Stringvalue()static BoardingPositionTypeEnumerationvalueOf(String name)Returns the enum constant of this type with the specified name.static BoardingPositionTypeEnumeration[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final BoardingPositionTypeEnumeration UNKNOWN
-
DOOR_FROM_AIRLINE_GATE
public static final BoardingPositionTypeEnumeration DOOR_FROM_AIRLINE_GATE
-
POSITION_ON_RAIL_PLATFORM
public static final BoardingPositionTypeEnumeration POSITION_ON_RAIL_PLATFORM
-
POSITION_ON_METRO_PLATFORM
public static final BoardingPositionTypeEnumeration POSITION_ON_METRO_PLATFORM
-
POSITION_AT_COACH_STOP
public static final BoardingPositionTypeEnumeration POSITION_AT_COACH_STOP
-
POSITION_AT_BUS_STOP
public static final BoardingPositionTypeEnumeration POSITION_AT_BUS_STOP
-
BOAT_GANGWAY
public static final BoardingPositionTypeEnumeration BOAT_GANGWAY
-
FERRY_GANGWAY
public static final BoardingPositionTypeEnumeration FERRY_GANGWAY
-
TELECABINE_PLATFROM
public static final BoardingPositionTypeEnumeration TELECABINE_PLATFROM
-
SET_DOWN_POINT
public static final BoardingPositionTypeEnumeration SET_DOWN_POINT
-
TAXI_BAY
public static final BoardingPositionTypeEnumeration TAXI_BAY
-
OTHER
public static final BoardingPositionTypeEnumeration OTHER
-
-
Method Detail
-
values
public static BoardingPositionTypeEnumeration[] 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 (BoardingPositionTypeEnumeration c : BoardingPositionTypeEnumeration.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BoardingPositionTypeEnumeration 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 BoardingPositionTypeEnumeration fromValue(String v)
-
-