Package org.tensorics.incubate.function
Interface KeyValueFunction<X extends java.lang.Comparable<? super X>,Y>
-
- Type Parameters:
X- type of argumentsY- type of values
- All Known Subinterfaces:
AnalyticalFunction<X,Y>,ContinuousFunction<X,Y>,DiscreteFunction<X,Y>
- All Known Implementing Classes:
ConstantFunction,ExponentialFunction,InterpolatedFunction,SortedMapBackedDiscreteFunction
public interface KeyValueFunction<X extends java.lang.Comparable<? super X>,Y>Represents the most general function that basically maps x-values to y values. One could also see it as a function with exactly ONE variable (x). The exact behavior of thegetY(Comparable)method depends on the implementations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description YgetY(X xValue)
-