Uses of Class
com.storedobject.chart.FunctionData
Packages that use FunctionData
-
Uses of FunctionData in com.storedobject.chart
Methods in com.storedobject.chart that return FunctionDataModifier and TypeMethodDescriptionstatic FunctionData
FunctionData.create
(double startingValue, double endingValue, double step) Create aFunctionData
that generates a sequence of double values as its output.static FunctionData
FunctionData.create
(int startingValue, int endingValue) Create aFunctionData
that generates a sequence of integer equivalents as its output.static FunctionData
FunctionData.create
(int startingValue, int endingValue, int step) Create aFunctionData
that generates a sequence of integer equivalents as its output.static <T> FunctionData
FunctionData.create
(AbstractDataProvider<T> xValues, ToDoubleFunction<T> converter) Create aFunctionData
that generates values by converting a stream of another set of values.static FunctionData
FunctionData.create
(DoubleFunction<Double> converter, double startingValue, double endingValue) Create a mathematical function that generatesFunctionData
for a given range of double values.static FunctionData
FunctionData.create
(DoubleFunction<Double> converter, double startingValue, double endingValue, double step) Create a mathematical function that generatesFunctionData
for a given range of double values.static FunctionData
FunctionData.create
(IntToDoubleFunction converter, int startingValue, int endingValue) Create a mathematical function that generatesFunctionData
for a given range of integer equivalents.static FunctionData
FunctionData.create
(IntToDoubleFunction converter, int startingValue, int endingValue, int step) Create a mathematical function that generatesFunctionData
for a given range of integers.static <T> FunctionData
FunctionData.create
(Supplier<Stream<T>> streamSupplier, ToDoubleFunction<T> converter) Create aFunctionData
that generates values by converting a stream of another set of values.