Uses of Class
org.onebusaway.gtfs.model.AgencyAndId

Packages that use AgencyAndId
org.onebusaway.gtfs.impl   
org.onebusaway.gtfs.impl.calendar   
org.onebusaway.gtfs.model   
org.onebusaway.gtfs.model.calendar   
org.onebusaway.gtfs.serialization   
org.onebusaway.gtfs.serialization.mappings   
org.onebusaway.gtfs.services   
org.onebusaway.gtfs.services.calendar   
 

Uses of AgencyAndId in org.onebusaway.gtfs.impl
 

Methods in org.onebusaway.gtfs.impl with parameters of type AgencyAndId
 java.util.List<ServiceCalendarDate> GtfsRelationalDaoImpl.getCalendarDatesForServiceId(AgencyAndId serviceId)
           
 ServiceCalendar GtfsRelationalDaoImpl.getCalendarForServiceId(AgencyAndId serviceId)
           
 FareAttribute GtfsDaoImpl.getFareAttributeForId(AgencyAndId id)
           
 Pathway GtfsDaoImpl.getPathwayForId(AgencyAndId id)
           
 Route GtfsDaoImpl.getRouteForId(AgencyAndId id)
           
 java.util.List<ShapePoint> GtfsRelationalDaoImpl.getShapePointsForShapeId(AgencyAndId shapeId)
           
 Stop GtfsDaoImpl.getStopForId(AgencyAndId id)
           
 java.util.List<java.lang.String> GtfsRelationalDaoImpl.getTripAgencyIdsReferencingServiceId(AgencyAndId serviceId)
           
 Trip GtfsDaoImpl.getTripForId(AgencyAndId id)
           
 java.util.List<Trip> GtfsRelationalDaoImpl.getTripsForBlockId(AgencyAndId blockId)
           
 

Constructors in org.onebusaway.gtfs.impl with parameters of type AgencyAndId
MultipleCalendarsForServiceIdException(AgencyAndId serviceId)
           
 

Uses of AgencyAndId in org.onebusaway.gtfs.impl.calendar
 

Methods in org.onebusaway.gtfs.impl.calendar that return types with arguments of type AgencyAndId
 java.util.Set<AgencyAndId> CalendarServiceImpl.getServiceIds()
          CalendarService Interface
 java.util.Set<AgencyAndId> CalendarServiceImpl.getServiceIdsOnDate(ServiceDate date)
           
 

Methods in org.onebusaway.gtfs.impl.calendar with parameters of type AgencyAndId
 LocalizedServiceId CalendarServiceImpl.getLocalizedServiceIdForAgencyAndServiceId(java.lang.String agencyId, AgencyAndId serviceId)
           
 java.util.Set<ServiceDate> CalendarServiceImpl.getServiceDatesForServiceId(AgencyAndId serviceId)
           
 

Uses of AgencyAndId in org.onebusaway.gtfs.model
 

Methods in org.onebusaway.gtfs.model that return AgencyAndId
static AgencyAndId AgencyAndId.convertFromString(java.lang.String value, char separator)
          Given an id of the form "agencyId_entityId", parses into a AgencyAndId id object.
 AgencyAndId Trip.getId()
           
 AgencyAndId Stop.getId()
           
 AgencyAndId Route.getId()
           
 AgencyAndId Pathway.getId()
           
 AgencyAndId FareAttribute.getId()
           
 AgencyAndId Trip.getServiceId()
           
 AgencyAndId ServiceCalendarDate.getServiceId()
           
 AgencyAndId ServiceCalendar.getServiceId()
           
 AgencyAndId Trip.getShapeId()
           
 AgencyAndId ShapePoint.getShapeId()
           
 

Methods in org.onebusaway.gtfs.model with parameters of type AgencyAndId
 int AgencyAndId.compareTo(AgencyAndId o)
           
 void Trip.setId(AgencyAndId id)
           
 void Stop.setId(AgencyAndId id)
           
 void Route.setId(AgencyAndId id)
           
 void Pathway.setId(AgencyAndId id)
           
 void FareAttribute.setId(AgencyAndId id)
           
 void Trip.setServiceId(AgencyAndId serviceId)
           
 void ServiceCalendarDate.setServiceId(AgencyAndId serviceId)
           
 void ServiceCalendar.setServiceId(AgencyAndId serviceId)
           
 void Trip.setShapeId(AgencyAndId shapeId)
           
 void ShapePoint.setShapeId(AgencyAndId shapeId)
           
 

Uses of AgencyAndId in org.onebusaway.gtfs.model.calendar
 

Methods in org.onebusaway.gtfs.model.calendar that return AgencyAndId
 AgencyAndId LocalizedServiceId.getId()
           
 

Methods in org.onebusaway.gtfs.model.calendar that return types with arguments of type AgencyAndId
 java.util.Set<AgencyAndId> CalendarServiceData.getServiceIds()
           
 java.util.Set<AgencyAndId> CalendarServiceData.getServiceIdsForDate(ServiceDate date)
           
 

Methods in org.onebusaway.gtfs.model.calendar with parameters of type AgencyAndId
 java.util.List<ServiceDate> CalendarServiceData.getServiceDatesForServiceId(AgencyAndId serviceId)
           
 void CalendarServiceData.putServiceDatesForServiceId(AgencyAndId serviceId, java.util.List<ServiceDate> serviceDates)
           
 

Constructors in org.onebusaway.gtfs.model.calendar with parameters of type AgencyAndId
LocalizedServiceId(AgencyAndId serviceId, java.util.TimeZone timeZone)
           
 

Uses of AgencyAndId in org.onebusaway.gtfs.serialization
 

Constructors in org.onebusaway.gtfs.serialization with parameters of type AgencyAndId
DuplicateEntityException(java.lang.Class<?> entityType, AgencyAndId id)
           
 

Uses of AgencyAndId in org.onebusaway.gtfs.serialization.mappings
 

Constructors in org.onebusaway.gtfs.serialization.mappings with parameters of type AgencyAndId
RouteNameException(AgencyAndId routeId)
           
 

Uses of AgencyAndId in org.onebusaway.gtfs.services
 

Methods in org.onebusaway.gtfs.services with parameters of type AgencyAndId
 java.util.List<ServiceCalendarDate> GtfsRelationalDao.getCalendarDatesForServiceId(AgencyAndId serviceId)
          ServiceCalendarDate Methods
 ServiceCalendar GtfsRelationalDao.getCalendarForServiceId(AgencyAndId serviceId)
          ServiceCalendar Methods
 FareAttribute GtfsDao.getFareAttributeForId(AgencyAndId id)
           
 Pathway GtfsDao.getPathwayForId(AgencyAndId id)
           
 Route GtfsDao.getRouteForId(AgencyAndId id)
           
 java.util.List<ShapePoint> GtfsRelationalDao.getShapePointsForShapeId(AgencyAndId shapeId)
          ShapePoint Methods
 Stop GtfsDao.getStopForId(AgencyAndId id)
           
 java.util.List<java.lang.String> GtfsRelationalDao.getTripAgencyIdsReferencingServiceId(AgencyAndId serviceId)
          ServiceId Methods
 Trip GtfsDao.getTripForId(AgencyAndId id)
           
 java.util.List<Trip> GtfsRelationalDao.getTripsForBlockId(AgencyAndId blockId)
           
 

Uses of AgencyAndId in org.onebusaway.gtfs.services.calendar
 

Methods in org.onebusaway.gtfs.services.calendar that return types with arguments of type AgencyAndId
 java.util.Set<AgencyAndId> CalendarService.getServiceIds()
           
 java.util.Set<AgencyAndId> CalendarService.getServiceIdsOnDate(ServiceDate date)
          Determine the set of service ids that are active on the specified service date.
 

Methods in org.onebusaway.gtfs.services.calendar with parameters of type AgencyAndId
 LocalizedServiceId CalendarService.getLocalizedServiceIdForAgencyAndServiceId(java.lang.String agencyId, AgencyAndId serviceId)
          Given an agency id and a service id, we return a LocalizedServiceId which is just a service id with timezone information attached.
 java.util.Set<ServiceDate> CalendarService.getServiceDatesForServiceId(AgencyAndId serviceId)
           
 



Copyright © 2010 OneBusAway. All Rights Reserved.