Uses of Class
rgu.transport.algorithms.util.Range
Packages that use Range
Package
Description
Contains utilities for the algorithms module.
Implementation of General Transit Feed Specification (GTFS) data loading.
-
Uses of Range in rgu.transport.algorithms.util
Methods in rgu.transport.algorithms.util that return RangeModifier and TypeMethodDescriptionstatic <T extends Comparable<? super T>>
Range<T> Range.any()Creates a range of all values (contains everything of type T).static <T extends Comparable<? super T>>
Range<T> Range.closed(T lower, T upper) Creates a closed range.static <T extends Comparable<? super T>>
Range<T> Range.halfOpen(T lower, T bound) Creates a half-open range.Methods in rgu.transport.algorithms.util with parameters of type RangeModifier and TypeMethodDescriptionbooleanRange.intersects(Range<T> other) Checks if this range intersects another range or not. -
Uses of Range in rgu.transport.geospatial.multimodal.gtfs
Methods in rgu.transport.geospatial.multimodal.gtfs with parameters of type RangeModifier and TypeMethodDescriptionstatic voidGTFSParser.load(GTFSDataSource source, TransitNetwork.Builder builder, Range<LocalDate> dateRange, Predicate<GeoLocation> locationFilter, boolean allowBrokenRoutes, GTFSProgressListener progress, AtomicReference<Runnable> cancel, BiConsumer<GeoLocation, GeoLocation> edgeLocationConsumer) Loads the specified GTFS data source.