Package org.goplanit.gtfs.entity
Class GtfsStopTime
- java.lang.Object
-
- org.goplanit.gtfs.entity.GtfsObject
-
- org.goplanit.gtfs.entity.GtfsStopTime
-
public class GtfsStopTime extends GtfsObject
In memory representation of a GTFS entry in stop_times.txt- Author:
- markr
-
-
Field Summary
Fields Modifier and Type Field Description static EnumSet<GtfsKeyType>
SUPPORTED_KEYS
Supported keys for a GTFS stop time instance
-
Constructor Summary
Constructors Constructor Description GtfsStopTime()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getArrivalTime()
String
getDepartureTime()
String
getStopId()
String
getStopSequence()
EnumSet<GtfsKeyType>
getSupportedKeys()
All supported keys for this GTFS objectString
getTripId()
String
toString()
String of all key value pairs of this GTFS entity-
Methods inherited from class org.goplanit.gtfs.entity.GtfsObject
appendKeyValues, containsKey, get, put
-
-
-
-
Field Detail
-
SUPPORTED_KEYS
public static final EnumSet<GtfsKeyType> SUPPORTED_KEYS
Supported keys for a GTFS stop time instance
-
-
Method Detail
-
getSupportedKeys
public EnumSet<GtfsKeyType> getSupportedKeys()
All supported keys for this GTFS object- Specified by:
getSupportedKeys
in classGtfsObject
- Returns:
- supported keys
-
toString
public String toString()
String of all key value pairs of this GTFS entity
-
getTripId
public String getTripId()
-
getStopId
public String getStopId()
-
getArrivalTime
public String getArrivalTime()
-
getDepartureTime
public String getDepartureTime()
-
getStopSequence
public String getStopSequence()
-
-