Uses of Interface
org.ojalgo.type.function.AutoSupplier
-
Packages that use AutoSupplier Package Description org.ojalgo.data.batch org.ojalgo.data.domain.finance.series org.ojalgo.netio This package loosely corresponds to (extends) the packages: java.io.*, java.nio.*, java.net.* and sun.net.*org.ojalgo.type.function -
-
Uses of AutoSupplier in org.ojalgo.data.batch
Fields in org.ojalgo.data.batch with type parameters of type AutoSupplier Modifier and Type Field Description private java.util.function.Function<java.io.File,AutoSupplier<T>>
BatchNode. myReaderFactory
Methods in org.ojalgo.data.batch that return AutoSupplier Modifier and Type Method Description (package private) AutoSupplier<T>
BatchNode. newReader(java.io.File file)
Methods in org.ojalgo.data.batch that return types with arguments of type AutoSupplier Modifier and Type Method Description private java.util.function.Function<java.io.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 AutoSupplier Modifier and Type Method Description default <T> AutoSupplier<T>
DataFetcher. getReader(TextLineReader.Parser<T> parser)
-
Uses of AutoSupplier in org.ojalgo.netio
Subinterfaces of AutoSupplier in org.ojalgo.netio Modifier and Type Interface Description interface
FromFileReader<T>
Classes in org.ojalgo.netio that implement AutoSupplier Modifier and Type Class Description class
DataReader<T>
ADataInput
basedFromFileReader
.class
TextLineReader
Methods in org.ojalgo.netio that return AutoSupplier Modifier and Type Method Description <T> AutoSupplier<T>
FromFileReader.Builder. build(java.util.function.Function<java.io.File,? extends FromFileReader<T>> factory)
default AutoSupplier<T>
TextLineInterpreter. newReader(java.io.File file)
default AutoSupplier<T>
TextLineInterpreter. newReader(java.io.File file, OperatorWithException<java.io.InputStream> filter)
<T> AutoSupplier<T>
TextLineReader. withFilteredParser(java.util.function.Predicate<java.lang.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 AutoSupplier Modifier and Type Method Description static <S,T>
java.util.function.Supplier<AutoSupplier<T>>FromFileReader. newFactory(java.util.function.Function<S,FromFileReader<T>> factory, java.util.Collection<? extends S> sources)
A factory that produce readers that read items from the supplied sources.static <S,T>
java.util.function.Supplier<AutoSupplier<T>>FromFileReader. newFactory(java.util.function.Function<S,FromFileReader<T>> factory, S... sources)
-
Uses of AutoSupplier in org.ojalgo.type.function
Classes in org.ojalgo.type.function that implement AutoSupplier Modifier and Type Class Description (package private) class
ManagedSupplier<T>
(package private) class
MappedSupplier<IN,OUT>
(package private) class
QueuedSupplier<T>
(package private) class
SequencedSupplier<S,T>
Fields in org.ojalgo.type.function declared as AutoSupplier Modifier and Type Field Description private AutoSupplier<T>
SupplierIterator. mySupplier
Methods in org.ojalgo.type.function that return AutoSupplier Modifier and Type Method Description static <T> AutoSupplier<T>
AutoSupplier. empty()
static <T> AutoSupplier<T>
AutoSupplier. managed(java.lang.String name, java.util.function.Supplier<T> supplier)
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, java.util.function.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>AutoSupplier. mapped(java.util.function.Supplier<T> supplier, java.util.function.Function<T,U> mapper)
Get something and map/transform before returning itstatic <T,U>
AutoSupplier<U>AutoSupplier. mapped(java.util.function.Supplier<T> supplier, java.util.function.Predicate<T> filter, java.util.function.Function<T,U> mapper)
Get something, that passes the test, and map/transform before returning itstatic <T> AutoSupplier<T>
AutoSupplier. queued(java.util.concurrent.ExecutorService executor, java.util.concurrent.BlockingQueue<T> queue, java.util.function.Supplier<T>... suppliers)
Multiple suppliers supply to a queue, then you get from that queue.static <T> AutoSupplier<T>
AutoSupplier. sequenced(java.util.concurrent.BlockingQueue<? extends java.util.function.Supplier<T>> sources)
static <S,T>
AutoSupplier<T>AutoSupplier. sequenced(java.util.concurrent.BlockingQueue<S> sources, java.util.function.Function<S,? extends java.util.function.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 Constructor Description SupplierIterator(AutoSupplier<T> supplier)
-