Package org.goplanit.gtfs.entity
Class GtfsFrequency
- java.lang.Object
-
- org.goplanit.gtfs.entity.GtfsObject
-
- org.goplanit.gtfs.entity.GtfsFrequency
-
public class GtfsFrequency extends GtfsObject
In memory representation of a GTFS entry in frequencies.txt- Author:
- markr
-
-
Field Summary
Fields Modifier and Type Field Description static EnumSet<GtfsKeyType>
SUPPORTED_KEYS
Supported keys for a GTFS frequencies instance
-
Constructor Summary
Constructors Constructor Description GtfsFrequency()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EnumSet<GtfsKeyType>
getSupportedKeys()
All supported keys for this GTFS objectString
getTripId()
Reference to trip that applies the given frequency definitionString
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 frequencies instance
-
-
Method Detail
-
getSupportedKeys
public EnumSet<GtfsKeyType> getSupportedKeys()
All supported keys for this GTFS object- Specified by:
getSupportedKeys
in classGtfsObject
- Returns:
- supported keys
-
getTripId
public String getTripId()
Reference to trip that applies the given frequency definition- Returns:
- trip id
-
-