Uses of Class
org.onebusaway.gtfs_transformer.updates.InterpolationLibrary.EOutOfRangeStrategy
-
Packages that use InterpolationLibrary.EOutOfRangeStrategy Package Description org.onebusaway.gtfs_transformer.updates -
-
Uses of InterpolationLibrary.EOutOfRangeStrategy in org.onebusaway.gtfs_transformer.updates
Methods in org.onebusaway.gtfs_transformer.updates that return InterpolationLibrary.EOutOfRangeStrategy Modifier and Type Method Description static InterpolationLibrary.EOutOfRangeStrategyInterpolationLibrary.EOutOfRangeStrategy. valueOf(String name)Returns the enum constant of this type with the specified name.static InterpolationLibrary.EOutOfRangeStrategy[]InterpolationLibrary.EOutOfRangeStrategy. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.onebusaway.gtfs_transformer.updates with parameters of type InterpolationLibrary.EOutOfRangeStrategy Modifier and Type Method Description static doubleInterpolationLibrary. interpolate(double[] keys, double[] values, double target, InterpolationLibrary.EOutOfRangeStrategy outOfRangeStrategy)static doubleInterpolationLibrary. interpolate(double[] keys, double[] values, double target, InterpolationLibrary.EOutOfRangeStrategy outOfRangeStrategy, InterpolationLibrary.EInRangeStrategy inRangeStrategy)static <K extends Number,V extends Number>
doubleInterpolationLibrary. interpolate(SortedMap<K,V> values, K target, InterpolationLibrary.EOutOfRangeStrategy outOfRangeStrategy)static <KEY extends Number,VALUE,ANY_KEY extends KEY,ANY_VALUE extends VALUE>
VALUEInterpolationLibrary. interpolate(InterpolationLibrary.InterpolationStrategy<KEY,VALUE> interpolationStrategy, InterpolationLibrary.EOutOfRangeStrategy outOfRangeStrategy, SortedMap<ANY_KEY,ANY_VALUE> values, ANY_KEY target)Given aSortedMapwith key-values that of arbitrary type and aInterpolationLibrary.InterpolationStrategyto define interpolation over those types, interpolate a value for a target key within the key-range of the map.
-