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 GtfsFileSchemeGtfsFileHandler. getFileScheme()File scheme supported by this handlerMethods in org.goplanit.gtfs.handler with parameters of type GtfsFileScheme Modifier and Type Method Description booleanGtfsFileHandler. 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 GtfsFileSchemeGtfsFileReaderBase. 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 GtfsFileReaderBaseGtfsReaderFactory. createFileReader(GtfsFileScheme fileScheme, String gtfsLocation)Identical toGtfsReaderFactory.createFileReader(GtfsFileScheme, URL, GtfsColumnType)only allowing for string based gtfs location reflecting a path to gtfs file and setting initially all columns to be parsedstatic GtfsFileReaderBaseGtfsReaderFactory. createFileReader(GtfsFileScheme fileScheme, String gtfsLocation, GtfsColumnType columnType)Identical toGtfsReaderFactory.createFileReader(GtfsFileScheme, URL, GtfsColumnType)only allowing for string based gtfs location reflecting a path to gtfs filestatic GtfsFileReaderBaseGtfsReaderFactory. createFileReader(GtfsFileScheme fileScheme, URL gtfsLocation)Factory method to create a GTFS file specific reader with all columns initially included enforcing the file is present (otherwise why other having a reader)static GtfsFileReaderBaseGtfsReaderFactory. createFileReader(GtfsFileScheme fileScheme, URL gtfsLocation, GtfsColumnType columnType)Factory method to create a GTFS file specific reader enforcing the file is present (otherwise why other having a reader)static GtfsFileReaderBaseGtfsReaderFactory. createFileReader(GtfsFileScheme fileScheme, URL gtfsLocation, GtfsColumnType columnType, GtfsFileConditions conditions)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 which enforces the file to be presentGtfsFileReaderBase(GtfsFileScheme fileScheme, URL gtfsLocation, GtfsFileConditions filePresenceCondition)Constructor using default gtfs reader settingsGtfsFileReaderBase(GtfsFileScheme fileScheme, URL gtfsLocation, GtfsFileConditions filePresenceCondition, GtfsFileReaderSettings settings)Constructor -
Uses of GtfsFileScheme in org.goplanit.gtfs.scheme
Subclasses of GtfsFileScheme in org.goplanit.gtfs.scheme Modifier and Type Class Description classGtfsAgenciesSchemeThe scheme used for GTFS agencies, namely an agency.txt file and a GtfsAgency in memory object to go with each entryclassGtfsAttributionsSchemeThe scheme used for GTFS attributions, namely an attributions.txt file and a GtfsAttribution in memory object to go with each entryclassGtfsCalendarDatesSchemeThe scheme used for GTFS calendar dates, namely a calendar_dates.txt file and a GtfsCalendarDate in memory object to go with each entryclassGtfsCalendarsSchemeThe scheme used for GTFS calendars, namely a calendar.txt file and a GtfsCalendar in memory object to go with each entryclassGtfsFareAttributesSchemeThe scheme used for GTFS fare attributes, namely a fare_attributes.txt file and a GtfsFareAttribute in memory object to go with each entryclassGtfsFareRulesSchemeThe scheme used for GTFS fare rules, namely a fare_rules.txt file and a GtfsFareRule in memory object to go with each entryclassGtfsFeedInfoSchemeThe scheme used for GTFS fare rules, namely a fare_rules.txt file and a GtfsFareRule in memory object to go with each entryclassGtfsFrequenciesSchemeThe scheme used for GTFS frequencies, namely a frequencies.txt file and a GtfsFrequency in memory object to go with each entryclassGtfsLevelsSchemeThe scheme used for GTFS levels, namely a levels.txt file and a GtfsLevel in memory object to go with each entryclassGtfsPathwaysSchemeThe scheme used for GTFS pathways, namely a pathways.txt file and a GtfsPathway in memory object to go with each entryclassGtfsRoutesSchemeThe scheme used for GTFS routes, namely a routes.txt file and a GtfsAgency in memory object to go with each entryclassGtfsShapesSchemeThe scheme used for GTFS fare rules, namely a fare_rules.txt file and a GtfsFareRule in memory object to go with each entryclassGtfsStopsSchemeThe scheme used for GTFS stops, namely an stops.txt file and a GtfsStop in memory object to go with each entryclassGtfsStopTimesSchemeThe scheme used for GTFS stop times, namely a stop_times.txt file and a GtfsStopTime in memory object to go with each entryclassGtfsTransfersSchemeThe scheme used for GTFS transfers, namely a transfers.txt file and a GtfsTransfer in memory object to go with each entryclassGtfsTranslationsSchemeThe scheme used for GTFS translations, namely a translations.txt file and a GtfsTranslation in memory object to go with each entryclassGtfsTripsSchemeThe 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 GtfsFileSchemeGtfsFileSchemeFactory. 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 InputStreamGtfsUtils. 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.static InputStreamGtfsUtils. createInputStream(URL gtfsLocation, GtfsFileScheme fileScheme, GtfsFileConditions filePresenceCondition, boolean logInfo)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.
-