Uses of Interface
org.ojalgo.type.function.AutoSupplier
Packages that use AutoSupplier
Package
Description
This package loosely corresponds to (extends) the packages: java.io.*, java.nio.*, java.net.* and sun.net.*
-
Uses of AutoSupplier in org.ojalgo.data.batch
Fields in org.ojalgo.data.batch with type parameters of type AutoSupplierModifier and TypeFieldDescriptionprivate Function
<File, AutoSupplier<T>> BatchNode.myReaderFactory
Methods in org.ojalgo.data.batch that return AutoSupplierMethods in org.ojalgo.data.batch that return types with arguments of type AutoSupplierModifier and TypeMethodDescriptionprivate Function
<File, AutoSupplier<T>> BatchNode.getReaderFactory()
-
Uses of AutoSupplier in org.ojalgo.data.domain.finance.series
Methods in org.ojalgo.data.domain.finance.series that return AutoSupplierModifier and TypeMethodDescriptiondefault <T> AutoSupplier
<T> DataFetcher.getReader
(TextLineReader.Parser<T> parser) -
Uses of AutoSupplier in org.ojalgo.netio
Subinterfaces of AutoSupplier in org.ojalgo.netioClasses in org.ojalgo.netio that implement AutoSupplierModifier and TypeClassDescriptionfinal class
DataReader<T>
ADataInput
basedFromFileReader
.final class
Methods in org.ojalgo.netio that return AutoSupplierModifier and TypeMethodDescription<T> AutoSupplier
<T> FromFileReader.Builder.build
(Function<File, ? extends FromFileReader<T>> factory) default AutoSupplier
<T> default AutoSupplier
<T> TextLineInterpreter.newReader
(File file, OperatorWithException<InputStream> filter) <T> AutoSupplier
<T> TextLineReader.withFilteredParser
(Predicate<String> filter, TextLineReader.Parser<T> parser) The filter could for instance beTextLineReader.isLineOK(String)
<T> AutoSupplier
<T> TextLineReader.withFilteredParser
(TextLineReader.Parser<T> parser) The filter isTextLineReader.isLineOK(String)
<T> AutoSupplier
<T> TextLineReader.withParser
(TextLineReader.Parser<T> parser) Methods in org.ojalgo.netio that return types with arguments of type AutoSupplierModifier and TypeMethodDescriptionstatic <S,
T> Supplier <AutoSupplier<T>> FromFileReader.newFactory
(Function<S, FromFileReader<T>> factory, Collection<? extends S> sources) A factory that produce readers that read items from the supplied sources.static <S,
T> Supplier <AutoSupplier<T>> FromFileReader.newFactory
(Function<S, FromFileReader<T>> factory, S... sources) -
Uses of AutoSupplier in org.ojalgo.type.function
Classes in org.ojalgo.type.function that implement AutoSupplierModifier and TypeClassDescription(package private) final class
(package private) final class
MappedSupplier<IN,
OUT> (package private) final class
(package private) final class
SequencedSupplier<S,
T> Fields in org.ojalgo.type.function declared as AutoSupplierMethods in org.ojalgo.type.function that return AutoSupplierModifier and TypeMethodDescriptionstatic <T> AutoSupplier
<T> AutoSupplier.empty()
static <T> AutoSupplier
<T> Will create a JMX bean, with the given name, that keeps track of the supplier's throughput.static <T> AutoSupplier
<T> AutoSupplier.managed
(Throughput manager, Supplier<T> supplier) If you want that throughput manager to be registered as a JMX bean, that's up to you.static <T,
U> AutoSupplier <U> Get something and map/transform before returning itstatic <T,
U> AutoSupplier <U> Get something, that passes the test, and map/transform before returning itstatic <T> AutoSupplier
<T> AutoSupplier.queued
(ExecutorService executor, BlockingQueue<T> queue, Supplier<T>... suppliers) Multiple suppliers supply to a queue, then you get from that queue.static <T> AutoSupplier
<T> AutoSupplier.sequenced
(BlockingQueue<? extends Supplier<T>> sources) static <S,
T> AutoSupplier <T> AutoSupplier.sequenced
(BlockingQueue<S> sources, Function<S, ? extends Supplier<T>> factory) Create anAutoSupplier
that will supply items from the containers, one after the other, until all containers are empty.Constructors in org.ojalgo.type.function with parameters of type AutoSupplier