Uses of Interface
org.jparsec.error.ParseErrorDetails
-
Packages that use ParseErrorDetails Package Description org.jparsec Provides core Parser implementations for parser combinator logic.org.jparsec.error Provides interfaces and classes for advanced error handling. -
-
Uses of ParseErrorDetails in org.jparsec
Classes in org.jparsec that implement ParseErrorDetails Modifier and Type Class Description (package private) class
EmptyParseError
Empty implementation ofParseErrorDetails
for subclasses to override.Methods in org.jparsec that return ParseErrorDetails Modifier and Type Method Description (package private) ParseErrorDetails
ParseContext. renderError()
Only called when rendering the error inParserException
. -
Uses of ParseErrorDetails in org.jparsec.error
Fields in org.jparsec.error declared as ParseErrorDetails Modifier and Type Field Description private ParseErrorDetails
ParserException. error
Methods in org.jparsec.error that return ParseErrorDetails Modifier and Type Method Description ParseErrorDetails
ParserException. getErrorDetails()
Returns the detailed description of the error, ornull
if none.Methods in org.jparsec.error with parameters of type ParseErrorDetails Modifier and Type Method Description private static java.lang.String
ParserException. toErrorMessage(java.lang.String message, java.lang.String module, ParseErrorDetails details, Location location)
(package private) static java.lang.String
ErrorReporter. toString(ParseErrorDetails details, Location location)
Constructors in org.jparsec.error with parameters of type ParseErrorDetails Constructor Description ParserException(java.lang.Throwable cause, ParseErrorDetails details, java.lang.String moduleName, Location location)
Deprecated.ParserException(ParseErrorDetails details, java.lang.String moduleName, Location location)
Deprecated.ParserException(ParseErrorDetails details, Location location)
Creates aParserException
object.
-