Interface CoffeePickParserType
-
- All Superinterfaces:
java.lang.AutoCloseable,java.io.Closeable
public interface CoffeePickParserType extends java.io.CloseableA parser.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description io.reactivex.rxjava3.core.Observable<ParseError>errors()ParserResultTypeparse()Run the parser.java.lang.Stringprovider()
-
-
-
Method Detail
-
errors
io.reactivex.rxjava3.core.Observable<ParseError> errors()
- Returns:
- An observable stream of warnings and errors
-
provider
java.lang.String provider()
- Returns:
- The name of the provider used to construct this parser
-
parse
ParserResultType parse() throws java.io.IOException, ParserFailureException
Run the parser.- Returns:
- The result of parsing
- Throws:
java.io.IOException- On I/O errorsParserFailureException- On fatal parse errors
-
-