Uses of Enum Class
org.onebusaway.gtfs_transformer.updates.InterpolationLibrary.EOutOfRangeStrategy
Packages that use InterpolationLibrary.EOutOfRangeStrategy
-
Uses of InterpolationLibrary.EOutOfRangeStrategy in org.onebusaway.gtfs_transformer.updates
Methods in org.onebusaway.gtfs_transformer.updates that return InterpolationLibrary.EOutOfRangeStrategyModifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.InterpolationLibrary.EOutOfRangeStrategy.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.onebusaway.gtfs_transformer.updates with parameters of type InterpolationLibrary.EOutOfRangeStrategyModifier and TypeMethodDescriptionstatic 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) InterpolationLibrary.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.