Uses of Interface
org.ojalgo.netio.TextLineReader.Parser
-
Packages that use TextLineReader.Parser Package Description 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 TextLineReader.Parser in org.ojalgo.data.domain.finance.series
Classes in org.ojalgo.data.domain.finance.series that implement TextLineReader.Parser Modifier and Type Class Description class
AlphaVantageParser
https://www.alphavantage.co/documentation/class
DatePriceParser
Will switch between any/all known parsers producingDatePrice
subclasses.(package private) static class
DatePriceParser.DefaultParser
class
IEXTradingParser
https://iextrading.com/developer/docs/#chartclass
YahooParser
Fields in org.ojalgo.data.domain.finance.series declared as TextLineReader.Parser Modifier and Type Field Description private TextLineReader.Parser<DP>
FinanceDataReader. myParser
Methods in org.ojalgo.data.domain.finance.series with parameters of type TextLineReader.Parser Modifier and Type Method Description default <T> AutoSupplier<T>
DataFetcher. getReader(TextLineReader.Parser<T> parser)
static <T extends DatePrice>
FinanceDataReader<T>FinanceDataReader. of(java.io.File file, TextLineReader.Parser<T> parser)
static <T extends DatePrice>
FinanceDataReader<T>FinanceDataReader. of(java.io.File file, TextLineReader.Parser<T> parser, CalendarDateUnit resolution)
static <T extends DatePrice>
FinanceDataReader<T>FinanceDataReader. of(InMemoryFile file, TextLineReader.Parser<T> parser)
static <T extends DatePrice>
FinanceDataReader<T>FinanceDataReader. of(InMemoryFile file, TextLineReader.Parser<T> parser, CalendarDateUnit resolution)
Constructors in org.ojalgo.data.domain.finance.series with parameters of type TextLineReader.Parser Constructor Description FinanceDataReader(java.io.File file, TextLineReader.Parser<DP> parser, CalendarDateUnit resolution)
FinanceDataReader(InMemoryFile file, TextLineReader.Parser<DP> parser, CalendarDateUnit resolution)
-
Uses of TextLineReader.Parser in org.ojalgo.netio
Subinterfaces of TextLineReader.Parser in org.ojalgo.netio Modifier and Type Interface Description interface
BasicParser<T>
A (CSV) parser interface.interface
TextLineInterpreter<T>
Classes in org.ojalgo.netio that implement TextLineReader.Parser Modifier and Type Class Description class
DetectingParser<T>
Will detect which delegate parser to use.class
EnumeratedColumnsParser
class
LineSplittingParser
Fields in org.ojalgo.netio declared as TextLineReader.Parser Modifier and Type Field Description private TextLineReader.Parser<T>
DetectingParser. myDefaultParser
private TextLineReader.Parser<? extends T>
DetectingParser. mySelectedParser
Fields in org.ojalgo.netio with type parameters of type TextLineReader.Parser Modifier and Type Field Description private java.util.List<KeyValue<java.util.function.Predicate<java.lang.String>,TextLineReader.Parser<? extends T>>>
DetectingParser. myPotentialParsers
Methods in org.ojalgo.netio with parameters of type TextLineReader.Parser Modifier and Type Method Description protected void
DetectingParser. addPotentialParser(java.util.function.Predicate<java.lang.String> predicate, TextLineReader.Parser<? extends T> parser)
<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)
Constructors in org.ojalgo.netio with parameters of type TextLineReader.Parser Constructor Description DetectingParser(TextLineReader.Parser<T> defaultParser)
-