Uses of Interface
org.ojalgo.netio.FromFileReader
-
Packages that use FromFileReader 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.* -
-
Uses of FromFileReader in org.ojalgo.data.batch
Fields in org.ojalgo.data.batch with type parameters of type FromFileReader Modifier and Type Field Description private java.util.function.Function<java.io.File,FromFileReader<T>>
BatchNode. myReaderFactory
Methods in org.ojalgo.data.batch that return FromFileReader Modifier and Type Method Description (package private) FromFileReader<T>
BatchNode. newReader(java.io.File file)
Methods in org.ojalgo.data.batch that return types with arguments of type FromFileReader Modifier and Type Method Description private java.util.function.Function<java.io.File,FromFileReader<T>>
BatchNode. getReaderFactory()
-
Uses of FromFileReader in org.ojalgo.data.domain.finance.series
Methods in org.ojalgo.data.domain.finance.series that return FromFileReader Modifier and Type Method Description default <T> FromFileReader<T>
DataFetcher. getReader(TextLineReader.Parser<T> parser)
-
Uses of FromFileReader in org.ojalgo.netio
Classes in org.ojalgo.netio that implement FromFileReader Modifier and Type Class Description class
DataReader<T>
ADataInput
basedFromFileReader
.(package private) class
ManagedReader<T>
(package private) class
MappedReader<IN,OUT>
(package private) class
QueuedReader<T>
(package private) class
SequencedReader<S,T>
class
TextLineReader
Fields in org.ojalgo.netio declared as FromFileReader Modifier and Type Field Description private FromFileReader<T>
SequencedReader. myCurrent
private FromFileReader<T>
ManagedReader. myReader
private FromFileReader<IN>
MappedReader. myReader
private FromFileReader<T>
QueuedReader.Worker. myReader
private FromFileReader<T>[]
QueuedReader. myReaders
private FromFileReader<T>
SupplierIterator. mySupplier
Fields in org.ojalgo.netio with type parameters of type FromFileReader Modifier and Type Field Description private java.util.function.Function<S,? extends FromFileReader<T>>
SequencedReader. myFactory
Methods in org.ojalgo.netio that return FromFileReader Modifier and Type Method Description <T> FromFileReader<T>
FromFileReader.Builder. build(java.util.function.Function<F,? extends FromFileReader<T>> factory)
static <T> FromFileReader<T>
FromFileReader. empty()
default <U> FromFileReader<U>
FromFileReader. map(java.util.function.Function<T,U> mapper)
<T> FromFileReader<T>
SegmentedFile. newDataReader(DataReader.Deserializer<T> deserializer)
default FromFileReader<T>
TextLineInterpreter. newReader(java.io.File file)
default FromFileReader<T>
TextLineInterpreter. newReader(java.io.File file, OperatorWithException<java.io.InputStream> filter)
FromFileReader<java.lang.String>
SegmentedFile. newTextLineReader()
<T> FromFileReader<T>
SegmentedFile. newTextLineReader(TextLineReader.Parser<T> parser)
<T> FromFileReader<T>
TextLineReader. withFilteredParser(java.util.function.Predicate<java.lang.String> filter, TextLineReader.Parser<T> parser)
The filter could for instance beTextLineReader.isLineOK(String)
<T> FromFileReader<T>
TextLineReader. withFilteredParser(TextLineReader.Parser<T> parser)
The filter isTextLineReader.isLineOK(String)
<T> FromFileReader<T>
TextLineReader. withParser(TextLineReader.Parser<T> parser)
Methods in org.ojalgo.netio that return types with arguments of type FromFileReader Modifier and Type Method Description <T> java.util.function.Supplier<FromFileReader<T>>
SegmentedFile. newSequencedFactory(java.util.function.Function<SegmentedFile.Segment,FromFileReader<T>> factory)
Each reader instantiated by this factory will read from the segments in sequence, until all of them are done.<T> java.util.function.Supplier<FromFileReader<T>>
ShardedFile. newSequencedFactory(java.util.function.Function<java.io.File,FromFileReader<T>> factory)
Each reader instantiated by this factory will read from the shards in sequence, until all of them are done.Method parameters in org.ojalgo.netio with type arguments of type FromFileReader Modifier and Type Method Description <T> FromFileReader<T>
FromFileReader.Builder. build(java.util.function.Function<F,? extends FromFileReader<T>> factory)
<T> java.util.function.Supplier<FromFileReader<T>>
SegmentedFile. newSequencedFactory(java.util.function.Function<SegmentedFile.Segment,FromFileReader<T>> factory)
Each reader instantiated by this factory will read from the segments in sequence, until all of them are done.<T> java.util.function.Supplier<FromFileReader<T>>
ShardedFile. newSequencedFactory(java.util.function.Function<java.io.File,FromFileReader<T>> factory)
Each reader instantiated by this factory will read from the shards in sequence, until all of them are done.Constructors in org.ojalgo.netio with parameters of type FromFileReader Constructor Description ManagedReader(Throughput manager, FromFileReader<T> reader)
MappedReader(FromFileReader<IN> supplier, java.util.function.Function<IN,OUT> mapper)
MappedReader(FromFileReader<IN> reader, java.util.function.Predicate<IN> filter, java.util.function.Function<IN,OUT> mapper)
QueuedReader(java.util.concurrent.ExecutorService executor, java.util.concurrent.BlockingQueue<T> queue, FromFileReader<T>... readers)
Multiple suppliers supply to a queue, then you get from that queue.SupplierIterator(FromFileReader<T> supplier)
Worker(java.util.concurrent.BlockingQueue<T> queue, FromFileReader<T> reader)
Constructor parameters in org.ojalgo.netio with type arguments of type FromFileReader Constructor Description SequencedReader(java.util.concurrent.BlockingQueue<S> sources, java.util.function.Function<S,? extends FromFileReader<T>> factory)
Create anAutoSupplier
that will supply items from the containers, one after the other, until all containers are empty.
-