Uses of Interface
org.ojalgo.netio.FromFileReader
Packages that use FromFileReader
Package
Description
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 FromFileReaderModifier and TypeFieldDescriptionprivate Function<File, FromFileReader<T>> BatchNode.myReaderFactoryMethods in org.ojalgo.data.batch that return FromFileReaderMethods in org.ojalgo.data.batch that return types with arguments of type FromFileReaderModifier and TypeMethodDescriptionprivate Function<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 FromFileReaderModifier and TypeMethodDescriptiondefault <T> FromFileReader<T> DataFetcher.getReader(TextLineReader.Parser<T> parser) -
Uses of FromFileReader in org.ojalgo.netio
Classes in org.ojalgo.netio that implement FromFileReaderModifier and TypeClassDescriptionfinal classDataReader<T>ADataInputbasedFromFileReader.(package private) final class(package private) final classMappedReader<IN,OUT> (package private) final classQueuedReader<T>(package private) final classSequencedReader<S,T> final classFields in org.ojalgo.netio declared as FromFileReaderModifier and TypeFieldDescriptionprivate FromFileReader<T> SequencedReader.myCurrentprivate final FromFileReader<T> ManagedReader.myReaderprivate final FromFileReader<IN> MappedReader.myReaderprivate final FromFileReader<T> QueuedReader.Worker.myReaderprivate final FromFileReader<T>[]QueuedReader.myReadersprivate final FromFileReader<T> SupplierIterator.mySupplierFields in org.ojalgo.netio with type parameters of type FromFileReaderModifier and TypeFieldDescriptionprivate final Function<S, ? extends FromFileReader<T>> SequencedReader.myFactoryMethods in org.ojalgo.netio that return FromFileReaderModifier and TypeMethodDescription<T> FromFileReader<T> FromFileReader.Builder.build(Function<F, ? extends FromFileReader<T>> factory) static <T> FromFileReader<T> FromFileReader.empty()default <U> FromFileReader<U> <T> FromFileReader<T> SegmentedFile.newDataReader(DataReader.Deserializer<T> deserializer) default FromFileReader<T> default FromFileReader<T> TextLineInterpreter.newReader(File file, OperatorWithException<InputStream> filter) SegmentedFile.newTextLineReader()<T> FromFileReader<T> SegmentedFile.newTextLineReader(TextLineReader.Parser<T> parser) <T> FromFileReader<T> TextLineReader.withFilteredParser(Predicate<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 FromFileReaderModifier and TypeMethodDescription<T> Supplier<FromFileReader<T>> SegmentedFile.newSequencedFactory(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> Supplier<FromFileReader<T>> ShardedFile.newSequencedFactory(Function<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 FromFileReaderModifier and TypeMethodDescription<T> FromFileReader<T> FromFileReader.Builder.build(Function<F, ? extends FromFileReader<T>> factory) <T> Supplier<FromFileReader<T>> SegmentedFile.newSequencedFactory(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> Supplier<FromFileReader<T>> ShardedFile.newSequencedFactory(Function<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 FromFileReaderModifierConstructorDescription(package private)ManagedReader(Throughput manager, FromFileReader<T> reader) (package private)MappedReader(FromFileReader<IN> supplier, Function<IN, OUT> mapper) (package private)MappedReader(FromFileReader<IN> reader, Predicate<IN> filter, Function<IN, OUT> mapper) (package private)QueuedReader(ExecutorService executor, BlockingQueue<T> queue, FromFileReader<T>... readers) Multiple suppliers supply to a queue, then you get from that queue.(package private)SupplierIterator(FromFileReader<T> supplier) (package private)Worker(BlockingQueue<T> queue, FromFileReader<T> reader) Constructor parameters in org.ojalgo.netio with type arguments of type FromFileReaderModifierConstructorDescription(package private)SequencedReader(BlockingQueue<S> sources, Function<S, ? extends FromFileReader<T>> factory) Create anthat will supply items from the containers, one after the other, until all containers are empty.invalid reference
AutoSupplier