Uses of Class
org.goplanit.utils.time.ExtendedLocalTime
-
Packages that use ExtendedLocalTime Package Description org.goplanit.gtfs.converter.service.handler org.goplanit.gtfs.util org.goplanit.service.routed org.goplanit.utils.service.routed org.goplanit.utils.time -
-
Uses of ExtendedLocalTime in org.goplanit.gtfs.converter.service.handler
Methods in org.goplanit.gtfs.converter.service.handler with parameters of type ExtendedLocalTime Modifier and Type Method Description booleanGtfsServicesHandlerData. isDepartureTimeOfServiceIdWithinEligibleTimePeriod(String serviceId, ExtendedLocalTime departureTime)Verify if a service id is active AND the given departure time for that service id falls within an active time period -
Uses of ExtendedLocalTime in org.goplanit.gtfs.util
Methods in org.goplanit.gtfs.util that return ExtendedLocalTime Modifier and Type Method Description static ExtendedLocalTimeGtfsUtils. parseGtfsTime(String gtfsTime)PArse a GTFS time HH:MM:SS that is allowed to extend beyond the 24h cycle as an ExtendeLocalTime object -
Uses of ExtendedLocalTime in org.goplanit.service.routed
Methods in org.goplanit.service.routed that return ExtendedLocalTime Modifier and Type Method Description ExtendedLocalTimeRoutedTripDepartureImpl. getDepartureTime()Departure time of the trip this instance is stored onMethods in org.goplanit.service.routed with parameters of type ExtendedLocalTime Modifier and Type Method Description protected RoutedTripDepartureImplRoutedTripDepartureFactoryImpl. createNew(ExtendedLocalTime departureTime)Create a newly created instance without registering on the containerRoutedTripDepartureImplRoutedTripDepartureFactoryImpl. registerNew(ExtendedLocalTime departureTime)Register a newly created instance on the underlying containerConstructors in org.goplanit.service.routed with parameters of type ExtendedLocalTime Constructor Description RoutedTripDepartureImpl(IdGroupingToken tokenId, ExtendedLocalTime departureTime)Constructor -
Uses of ExtendedLocalTime in org.goplanit.utils.service.routed
Methods in org.goplanit.utils.service.routed that return ExtendedLocalTime Modifier and Type Method Description ExtendedLocalTimeRoutedTripDeparture. getDepartureTime()Departure time of the trip this instance is stored onMethods in org.goplanit.utils.service.routed with parameters of type ExtendedLocalTime Modifier and Type Method Description RoutedTripDepartureRoutedTripDepartureFactory. registerNew(ExtendedLocalTime departureTime)Register a newly created instance on the underlying container -
Uses of ExtendedLocalTime in org.goplanit.utils.time
Methods in org.goplanit.utils.time that return ExtendedLocalTime Modifier and Type Method Description ExtendedLocalTimeExtendedLocalTime. minus(ExtendedLocalTime other)subtract other from this and return newly created extended time reflecting the new time.static ExtendedLocalTimeExtendedLocalTime. of(long nanos)Create from nanos, logs warning and returns null if not validstatic ExtendedLocalTimeExtendedLocalTime. of(String hh_mm_ss)Factory method taking HH:mm:ss where hours are allowed to exceed 24 to reflect a time running passed the day (but not beyond the next day), e.g.static ExtendedLocalTimeExtendedLocalTime. of(LocalTime localtime)Create extended local time from regular local timestatic ExtendedLocalTimeExtendedLocalTime. ofBeyondMidnight(LocalTime localtime)Create extended local time from regular local time that is assumed to be beyond midnightExtendedLocalTimeExtendedLocalTime. plus(ExtendedLocalTime other)add other to this and return newly created extended time reflecting the new time.Methods in org.goplanit.utils.time with parameters of type ExtendedLocalTime Modifier and Type Method Description intExtendedLocalTime. compareTo(ExtendedLocalTime o)When before 0 value -1, when after value 1, otherwise 0booleanExtendedLocalTime. isAfter(ExtendedLocalTime other)verify if other time occurs before this timebooleanExtendedLocalTime. isBefore(ExtendedLocalTime other)verify if other time occurs before this timeExtendedLocalTimeExtendedLocalTime. minus(ExtendedLocalTime other)subtract other from this and return newly created extended time reflecting the new time.ExtendedLocalTimeExtendedLocalTime. plus(ExtendedLocalTime other)add other to this and return newly created extended time reflecting the new time.
-