Uses of Class
org.ojalgo.netio.SegmentedFile.Segment
-
Packages that use SegmentedFile.Segment Package Description org.ojalgo.netio This package loosely corresponds to (extends) the packages: java.io.*, java.nio.*, java.net.* and sun.net.* -
-
Uses of SegmentedFile.Segment in org.ojalgo.netio
Fields in org.ojalgo.netio declared as SegmentedFile.Segment Modifier and Type Field Description private SegmentedFile.Segment[]
SegmentedFile. mySegments
Methods in org.ojalgo.netio that return SegmentedFile.Segment Modifier and Type Method Description (package private) SegmentedFile.Segment[]
SegmentedFile. getSegments()
Methods in org.ojalgo.netio that return types with arguments of type SegmentedFile.Segment Modifier and Type Method Description static FromFileReader.Builder<SegmentedFile.Segment>
FromFileReader. newBuilder(SegmentedFile segmented)
java.util.List<SegmentedFile.Segment>
SegmentedFile. segments()
Methods in org.ojalgo.netio with parameters of type SegmentedFile.Segment Modifier and Type Method Description int
SegmentedFile.Segment. compareTo(SegmentedFile.Segment ref)
<T> DataReader<T>
SegmentedFile. newDataReader(SegmentedFile.Segment segment, DataReader.Deserializer<T> deserializer)
TextLineReader
SegmentedFile. newTextLineReader(SegmentedFile.Segment segment)
Call this once for each file segment, and use the returnedTextLineReader
to read the file segment.Method parameters in org.ojalgo.netio with type arguments of type SegmentedFile.Segment 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.Constructors in org.ojalgo.netio with parameters of type SegmentedFile.Segment Constructor Description SegmentedFile(java.io.RandomAccessFile file, SegmentedFile.Segment[] segments)
-