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 FunctionDataFunctionData.create(double startingValue, double endingValue, double step) Create aFunctionDatathat generates a sequence of double values as its output.static FunctionDataFunctionData.create(int startingValue, int endingValue) Create aFunctionDatathat generates a sequence of integer equivalents as its output.static FunctionDataFunctionData.create(int startingValue, int endingValue, int step) Create aFunctionDatathat generates a sequence of integer equivalents as its output.static <T> FunctionDataFunctionData.create(AbstractDataProvider<T> xValues, ToDoubleFunction<T> converter) Create aFunctionDatathat generates values by converting a stream of another set of values.static FunctionDataFunctionData.create(DoubleFunction<Double> converter, double startingValue, double endingValue) Create a mathematical function that generatesFunctionDatafor a given range of double values.static FunctionDataFunctionData.create(DoubleFunction<Double> converter, double startingValue, double endingValue, double step) Create a mathematical function that generatesFunctionDatafor a given range of double values.static FunctionDataFunctionData.create(IntToDoubleFunction converter, int startingValue, int endingValue) Create a mathematical function that generatesFunctionDatafor a given range of integer equivalents.static FunctionDataFunctionData.create(IntToDoubleFunction converter, int startingValue, int endingValue, int step) Create a mathematical function that generatesFunctionDatafor a given range of integers.static <T> FunctionDataFunctionData.create(Supplier<Stream<T>> streamSupplier, ToDoubleFunction<T> converter) Create aFunctionDatathat generates values by converting a stream of another set of values.