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 boolean
GtfsServicesHandlerData. 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 ExtendedLocalTime
GtfsUtils. 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 ExtendedLocalTime
RoutedTripDepartureImpl. 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 RoutedTripDepartureImpl
RoutedTripDepartureFactoryImpl. createNew(ExtendedLocalTime departureTime)
Create a newly created instance without registering on the containerRoutedTripDepartureImpl
RoutedTripDepartureFactoryImpl. 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 ExtendedLocalTime
RoutedTripDeparture. 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 RoutedTripDeparture
RoutedTripDepartureFactory. 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 ExtendedLocalTime
ExtendedLocalTime. minus(ExtendedLocalTime other)
subtract other from this and return newly created extended time reflecting the new time.static ExtendedLocalTime
ExtendedLocalTime. of(long nanos)
Create from nanos, logs warning and returns null if not validstatic ExtendedLocalTime
ExtendedLocalTime. 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 ExtendedLocalTime
ExtendedLocalTime. of(LocalTime localtime)
Create extended local time from regular local timestatic ExtendedLocalTime
ExtendedLocalTime. ofBeyondMidnight(LocalTime localtime)
Create extended local time from regular local time that is assumed to be beyond midnightExtendedLocalTime
ExtendedLocalTime. 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 int
ExtendedLocalTime. compareTo(ExtendedLocalTime o)
When before 0 value -1, when after value 1, otherwise 0boolean
ExtendedLocalTime. isAfter(ExtendedLocalTime other)
verify if other time occurs before this timeboolean
ExtendedLocalTime. isBefore(ExtendedLocalTime other)
verify if other time occurs before this timeExtendedLocalTime
ExtendedLocalTime. minus(ExtendedLocalTime other)
subtract other from this and return newly created extended time reflecting the new time.ExtendedLocalTime
ExtendedLocalTime. plus(ExtendedLocalTime other)
add other to this and return newly created extended time reflecting the new time.
-