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 classAlphaVantageParserhttps://www.alphavantage.co/documentation/classDatePriceParserWill switch between any/all known parsers producingDatePricesubclasses.(package private) static classDatePriceParser.DefaultParserclassIEXTradingParserhttps://iextrading.com/developer/docs/#chartclassYahooParserFields in org.ojalgo.data.domain.finance.series declared as TextLineReader.Parser Modifier and Type Field Description private TextLineReader.Parser<DP>FinanceDataReader. myParserMethods in org.ojalgo.data.domain.finance.series with parameters of type TextLineReader.Parser Modifier and Type Method Description default <T> FromFileReader<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 interfaceBasicParser<T>A (CSV) parser interface.interfaceTextLineInterpreter<T>Classes in org.ojalgo.netio that implement TextLineReader.Parser Modifier and Type Class Description classDetectingParser<T>Will detect which delegate parser to use.classEnumeratedColumnsParserclassLineSplittingParserFields in org.ojalgo.netio declared as TextLineReader.Parser Modifier and Type Field Description private TextLineReader.Parser<T>DetectingParser. myDefaultParserprivate TextLineReader.Parser<? extends T>DetectingParser. mySelectedParserFields 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. myPotentialParsersMethods in org.ojalgo.netio with parameters of type TextLineReader.Parser Modifier and Type Method Description protected voidDetectingParser. addPotentialParser(java.util.function.Predicate<java.lang.String> predicate, TextLineReader.Parser<? extends T> parser)<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)Constructors in org.ojalgo.netio with parameters of type TextLineReader.Parser Constructor Description DetectingParser(TextLineReader.Parser<T> defaultParser)
-