Uses of Class
org.goplanit.gtfs.model.GtfsObject
-
Packages that use GtfsObject Package Description org.goplanit.gtfs.enums org.goplanit.gtfs.handler org.goplanit.gtfs.model org.goplanit.gtfs.reader -
-
Uses of GtfsObject in org.goplanit.gtfs.enums
Methods in org.goplanit.gtfs.enums that return types with arguments of type GtfsObject Modifier and Type Method Description Class<? extends GtfsObject>
GtfsObjectType. value()
Get the value of the enum -
Uses of GtfsObject in org.goplanit.gtfs.handler
Classes in org.goplanit.gtfs.handler with type parameters of type GtfsObject Modifier and Type Class Description class
GtfsFileHandler<T extends GtfsObject>
A file handler base class to handle callbacks for a particular GTFS file typeMethods in org.goplanit.gtfs.handler with parameters of type GtfsObject Modifier and Type Method Description void
GtfsFileHandler. handleRaw(GtfsObject gtfsObject)
Handle raw GTFS object, cast to T and then delegate to handle -
Uses of GtfsObject in org.goplanit.gtfs.model
Subclasses of GtfsObject in org.goplanit.gtfs.model Modifier and Type Class Description class
GtfsAgency
In memory representation of a GTFS entry in agency.txtclass
GtfsAttribution
In memory representation of a GTFS entry in attributions.txtclass
GtfsCalendar
In memory representation of a GTFS entry in calendar.txtclass
GtfsCalendarDate
In memory representation of a GTFS entry in calendar_dates.txtclass
GtfsFareAttribute
In memory representation of a GTFS entry in fare_attributes.txtclass
GtfsFareRule
In memory representation of a GTFS entry in fare_rules.txtclass
GtfsFeedInfo
In memory representation of a GTFS entry in feed_info.txtclass
GtfsFrequency
In memory representation of a GTFS entry in frequencies.txtclass
GtfsLevel
In memory representation of a GTFS entry in levels.txtclass
GtfsPathway
In memory representation of a GTFS entry in pathways.txtclass
GtfsRoute
In memory representation of a GTFS entry in routes.txtclass
GtfsShape
In memory representation of a GTFS entry in shapes.txtclass
GtfsStop
In memory representation of a GTFS entry in stops.txtclass
GtfsStopTime
In memory representation of a GTFS entry in stop_times.txtclass
GtfsTransfer
In memory representation of a GTFS entry in transfers.txtclass
GtfsTranslation
In memory representation of a GTFS entry in translations.txtclass
GtfsTrip
In memory representation of a GTFS entry in trips.txtMethods in org.goplanit.gtfs.model that return GtfsObject Modifier and Type Method Description static GtfsObject
GtfsObjectFactory. create(GtfsObjectType objectType)
Create a GTFS object of a given type based on the provide object type -
Uses of GtfsObject in org.goplanit.gtfs.reader
Method parameters in org.goplanit.gtfs.reader with type arguments of type GtfsObject Modifier and Type Method Description GtfsFileReaderBase
GtfsReader. addFileHandler(GtfsFileHandler<? extends GtfsObject> gtfsFileHandler)
Register a handler for a specific file typevoid
GtfsFileReaderBase. addHandler(GtfsFileHandler<? extends GtfsObject> handler)
Register handler
-