Uses of Class
org.goplanit.gtfs.scheme.GtfsFileScheme
-
Packages that use GtfsFileScheme Package Description org.goplanit.gtfs.handler org.goplanit.gtfs.reader org.goplanit.gtfs.scheme org.goplanit.gtfs.util -
-
Uses of GtfsFileScheme in org.goplanit.gtfs.handler
Methods in org.goplanit.gtfs.handler that return GtfsFileScheme Modifier and Type Method Description GtfsFileScheme
GtfsFileHandler. getFileScheme()
File scheme supported by this handlerMethods in org.goplanit.gtfs.handler with parameters of type GtfsFileScheme Modifier and Type Method Description boolean
GtfsFileHandler. isCompatible(GtfsFileScheme otherFileScheme)
Verify if handler is compatible with given file schemeConstructors in org.goplanit.gtfs.handler with parameters of type GtfsFileScheme Constructor Description GtfsFileHandler(GtfsFileScheme fileScheme)
Constructor -
Uses of GtfsFileScheme in org.goplanit.gtfs.reader
Methods in org.goplanit.gtfs.reader that return GtfsFileScheme Modifier and Type Method Description GtfsFileScheme
GtfsFileReaderBase. getFileScheme()
The file scheme of this reader indicating what file it is operating onMethods in org.goplanit.gtfs.reader with parameters of type GtfsFileScheme Modifier and Type Method Description static GtfsFileReaderBase
GtfsReaderFactory. createFileReader(GtfsFileScheme fileScheme, URL gtfsLocation)
Factory method to create a GTFS file specific readerConstructors in org.goplanit.gtfs.reader with parameters of type GtfsFileScheme Constructor Description GtfsFileReaderBase(GtfsFileScheme fileScheme, URL gtfsLocation)
Constructor using default gtfs reader settingsGtfsFileReaderBase(GtfsFileScheme fileScheme, URL gtfsLocation, GtfsFileReaderSettings settings)
Constructor -
Uses of GtfsFileScheme in org.goplanit.gtfs.scheme
Subclasses of GtfsFileScheme in org.goplanit.gtfs.scheme Modifier and Type Class Description class
GtfsAgenciesScheme
The scheme used for GTFS agencies, namely an agency.txt file and a GtfsAgency in memory object to go with each entryclass
GtfsAttributionsScheme
The scheme used for GTFS attributions, namely an attributions.txt file and a GtfsAttribution in memory object to go with each entryclass
GtfsCalendarDatesScheme
The scheme used for GTFS calendar dates, namely a calendar_dates.txt file and a GtfsCalendarDate in memory object to go with each entryclass
GtfsCalendarsScheme
The scheme used for GTFS calendars, namely a calendar.txt file and a GtfsCalendar in memory object to go with each entryclass
GtfsFareAttributesScheme
The scheme used for GTFS fare attributes, namely a fare_attributes.txt file and a GtfsFareAttribute in memory object to go with each entryclass
GtfsFareRulesScheme
The scheme used for GTFS fare rules, namely a fare_rules.txt file and a GtfsFareRule in memory object to go with each entryclass
GtfsFeedInfoScheme
The scheme used for GTFS fare rules, namely a fare_rules.txt file and a GtfsFareRule in memory object to go with each entryclass
GtfsFrequenciesScheme
The scheme used for GTFS frequencies, namely a frequencies.txt file and a GtfsFrequency in memory object to go with each entryclass
GtfsLevelsScheme
The scheme used for GTFS levels, namely a levels.txt file and a GtfsLevel in memory object to go with each entryclass
GtfsPathwaysScheme
The scheme used for GTFS pathways, namely a pathways.txt file and a GtfsPathway in memory object to go with each entryclass
GtfsRoutesScheme
The scheme used for GTFS routes, namely a routes.txt file and a GtfsAgency in memory object to go with each entryclass
GtfsShapesScheme
The scheme used for GTFS fare rules, namely a fare_rules.txt file and a GtfsFareRule in memory object to go with each entryclass
GtfsStopsScheme
The scheme used for GTFS stops, namely an stops.txt file and a GtfsStop in memory object to go with each entryclass
GtfsStopTimesScheme
The scheme used for GTFS stop times, namely a stop_times.txt file and a GtfsStopTime in memory object to go with each entryclass
GtfsTransfersScheme
The scheme used for GTFS transfers, namely a transfers.txt file and a GtfsTransfer in memory object to go with each entryclass
GtfsTranslationsScheme
The scheme used for GTFS translations, namely a translations.txt file and a GtfsTranslation in memory object to go with each entryclass
GtfsTripsScheme
The scheme used for GTFS trips, namely a trips.txt file and a GtfsTrip in memory object to go with each entryMethods in org.goplanit.gtfs.scheme that return GtfsFileScheme Modifier and Type Method Description static GtfsFileScheme
GtfsFileSchemeFactory. create(GtfsFileType fileType)
Create the Gtfs file scheme based on the desired file type -
Uses of GtfsFileScheme in org.goplanit.gtfs.util
Methods in org.goplanit.gtfs.util with parameters of type GtfsFileScheme Modifier and Type Method Description static InputStream
GtfsUtils. createInputStream(URL gtfsLocation, GtfsFileScheme fileScheme, GtfsFileConditions filePresenceCondition)
Based on passed in location and the file scheme create an input stream to the appropriate file, log warnings if not present but conditions require otherwise.
-