Uses of Class
org.onebusaway.gtfs.model.calendar.LocalizedServiceId

Packages that use LocalizedServiceId
org.onebusaway.gtfs.impl.calendar   
org.onebusaway.gtfs.model.calendar   
org.onebusaway.gtfs.services.calendar   
 

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

Methods in org.onebusaway.gtfs.impl.calendar that return LocalizedServiceId
 LocalizedServiceId CalendarServiceImpl.getLocalizedServiceIdForAgencyAndServiceId(java.lang.String agencyId, AgencyAndId serviceId)
           
 

Methods in org.onebusaway.gtfs.impl.calendar that return types with arguments of type LocalizedServiceId
 java.util.Map<LocalizedServiceId,java.util.List<java.util.Date>> CalendarServiceImpl.getNextDepartureServiceDates(ServiceIdIntervals serviceIdIntervals, long targetTime)
           
 java.util.Map<LocalizedServiceId,java.util.List<java.util.Date>> CalendarServiceImpl.getPreviousArrivalServiceDates(ServiceIdIntervals serviceIdIntervals, long targetTime)
           
 java.util.Map<LocalizedServiceId,java.util.List<java.util.Date>> CalendarServiceImpl.getServiceDateArrivalsWithinRange(ServiceIdIntervals serviceIdIntervals, java.util.Date from, java.util.Date to)
           
 java.util.Map<LocalizedServiceId,java.util.List<java.util.Date>> CalendarServiceImpl.getServiceDateDeparturesWithinRange(ServiceIdIntervals serviceIdIntervals, java.util.Date from, java.util.Date to)
           
 java.util.Map<LocalizedServiceId,java.util.List<java.util.Date>> CalendarServiceImpl.getServiceDatesWithinRange(ServiceIdIntervals serviceIdIntervals, java.util.Date from, java.util.Date to)
           
 

Methods in org.onebusaway.gtfs.impl.calendar with parameters of type LocalizedServiceId
 java.util.List<java.util.Date> CalendarServiceImpl.getDatesForLocalizedServiceId(LocalizedServiceId localizedServiceId)
           
 java.util.List<java.util.Date> CalendarServiceImpl.getNextDepartureServiceDates(LocalizedServiceId serviceId, ServiceInterval interval, long targetTime)
           
 java.util.List<java.util.Date> CalendarServiceImpl.getPreviousArrivalServiceDates(LocalizedServiceId serviceId, ServiceInterval interval, long targetTime)
           
 java.util.List<java.util.Date> CalendarServiceImpl.getServiceDateArrivalsWithinRange(LocalizedServiceId serviceId, ServiceInterval interval, java.util.Date from, java.util.Date to)
           
 java.util.List<java.util.Date> CalendarServiceImpl.getServiceDateDeparturesWithinRange(LocalizedServiceId serviceId, ServiceInterval interval, java.util.Date from, java.util.Date to)
           
 java.util.List<java.util.Date> CalendarServiceImpl.getServiceDatesWithinRange(LocalizedServiceId serviceId, ServiceInterval interval, java.util.Date from, java.util.Date to)
           
 boolean CalendarServiceImpl.isLocalizedServiceIdActiveOnDate(LocalizedServiceId localizedServiceId, java.util.Date serviceDate)
           
 

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

Methods in org.onebusaway.gtfs.model.calendar that return types with arguments of type LocalizedServiceId
 java.util.Set<LocalizedServiceId> ServiceIdIntervals.getServiceIds()
           
 java.util.Iterator<java.util.Map.Entry<LocalizedServiceId,ServiceInterval>> ServiceIdIntervals.iterator()
           
 

Methods in org.onebusaway.gtfs.model.calendar with parameters of type LocalizedServiceId
 void ServiceIdIntervals.addStopTime(LocalizedServiceId serviceId, int arrivalTime, int departureTime)
           
 int LocalizedServiceId.compareTo(LocalizedServiceId o)
           
 java.util.List<java.util.Date> CalendarServiceData.getDatesForLocalizedServiceId(LocalizedServiceId serviceId)
           
 ServiceInterval ServiceIdIntervals.getIntervalForServiceId(LocalizedServiceId serviceId)
           
 void CalendarServiceData.putDatesForLocalizedServiceId(LocalizedServiceId serviceId, java.util.List<java.util.Date> dates)
           
 

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

Methods in org.onebusaway.gtfs.services.calendar that return LocalizedServiceId
 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.
 

Methods in org.onebusaway.gtfs.services.calendar that return types with arguments of type LocalizedServiceId
 java.util.Map<LocalizedServiceId,java.util.List<java.util.Date>> CalendarService.getNextDepartureServiceDates(ServiceIdIntervals serviceIdIntervals, long targetTime)
          See the description for CalendarService.getNextDepartureServiceDates(LocalizedServiceId, ServiceInterval, long) .
 java.util.Map<LocalizedServiceId,java.util.List<java.util.Date>> CalendarService.getPreviousArrivalServiceDates(ServiceIdIntervals serviceIdIntervals, long targetTime)
          See the description for CalendarService.getPreviousArrivalServiceDates(LocalizedServiceId, ServiceInterval, long) .
 java.util.Map<LocalizedServiceId,java.util.List<java.util.Date>> CalendarService.getServiceDateArrivalsWithinRange(ServiceIdIntervals serviceIdIntervals, java.util.Date from, java.util.Date to)
          See the description from CalendarService.getServiceDateArrivalsWithinRange(LocalizedServiceId, ServiceInterval, Date, Date) .
 java.util.Map<LocalizedServiceId,java.util.List<java.util.Date>> CalendarService.getServiceDateDeparturesWithinRange(ServiceIdIntervals serviceIdIntervals, java.util.Date from, java.util.Date to)
          See the description from CalendarService.getServiceDateDeparturesWithinRange(LocalizedServiceId, ServiceInterval, Date, Date) .
 java.util.Map<LocalizedServiceId,java.util.List<java.util.Date>> CalendarService.getServiceDatesWithinRange(ServiceIdIntervals serviceIdIntervals, java.util.Date from, java.util.Date to)
          See the description from CalendarService.getServiceDatesWithinRange(LocalizedServiceId, ServiceInterval, Date, Date) .
 

Methods in org.onebusaway.gtfs.services.calendar with parameters of type LocalizedServiceId
 java.util.List<java.util.Date> CalendarService.getDatesForLocalizedServiceId(LocalizedServiceId localizedServiceId)
           
 java.util.List<java.util.Date> CalendarService.getNextDepartureServiceDates(LocalizedServiceId serviceId, ServiceInterval interval, long targetTime)
          Computes the list of service dates whose departure service interval (min to max departure time) overlaps the specified target time.
 java.util.List<java.util.Date> CalendarService.getPreviousArrivalServiceDates(LocalizedServiceId serviceId, ServiceInterval interval, long targetTime)
          Computes the list of service dates whose arrival service interval (min to max departure time) overlaps the specified target time.
 java.util.List<java.util.Date> CalendarService.getServiceDateArrivalsWithinRange(LocalizedServiceId serviceId, ServiceInterval interval, java.util.Date from, java.util.Date to)
          See the description from CalendarService.getServiceDatesWithinRange(LocalizedServiceId, ServiceInterval, Date, Date) .
 java.util.List<java.util.Date> CalendarService.getServiceDateDeparturesWithinRange(LocalizedServiceId serviceId, ServiceInterval interval, java.util.Date from, java.util.Date to)
          See the description from CalendarService.getServiceDatesWithinRange(LocalizedServiceId, ServiceInterval, Date, Date) .
 java.util.List<java.util.Date> CalendarService.getServiceDatesWithinRange(LocalizedServiceId serviceId, ServiceInterval interval, java.util.Date from, java.util.Date to)
          Given the specified localized service id, which has a corresponding set of localized service dates, determine the sublist of service dates that, when extended with the specified ServiceInterval, overlap with the specified from-to time range.
 boolean CalendarService.isLocalizedServiceIdActiveOnDate(LocalizedServiceId localizedServiceId, java.util.Date serviceDate)
           
 



Copyright © 2010 OneBusAway. All Rights Reserved.