Uses of Class
org.parboiled.support.MatcherPath
-
Packages that use MatcherPath Package Description org.parboiled org.parboiled.errors org.parboiled.support -
-
Uses of MatcherPath in org.parboiled
Methods in org.parboiled that return MatcherPath Modifier and Type Method Description MatcherPath
Context. getPath()
Returns theMatcherPath
to the currently running matcher.MatcherPath
MatcherContext. getPath()
-
Uses of MatcherPath in org.parboiled.errors
Methods in org.parboiled.errors that return MatcherPath Modifier and Type Method Description MatcherPath
ActionError. getErrorPath()
Gets the path to the matcher that caused this error.Methods in org.parboiled.errors that return types with arguments of type MatcherPath Modifier and Type Method Description java.util.List<MatcherPath>
InvalidInputError. getFailedMatchers()
Gets the list of paths to the single character matchers that failed at the error location of this error.Constructors in org.parboiled.errors with parameters of type MatcherPath Constructor Description ActionError(InputBuffer inputBuffer, int errorIndex, java.lang.String errorMessage, MatcherPath errorPath, ActionException actionException)
Constructor parameters in org.parboiled.errors with type arguments of type MatcherPath Constructor Description InvalidInputError(InputBuffer inputBuffer, int startIndex, java.util.List<MatcherPath> failedMatchers, java.lang.String errorMessage)
-
Uses of MatcherPath in org.parboiled.support
Fields in org.parboiled.support declared as MatcherPath Modifier and Type Field Description MatcherPath
MatcherPath. parent
Methods in org.parboiled.support that return MatcherPath Modifier and Type Method Description MatcherPath
MatcherPath. commonPrefix(MatcherPath that)
Returns the common prefix of this MatcherPath and the given other one.Methods in org.parboiled.support with parameters of type MatcherPath Modifier and Type Method Description MatcherPath
MatcherPath. commonPrefix(MatcherPath that)
Returns the common prefix of this MatcherPath and the given other one.boolean
MatcherPath. isPrefixOf(MatcherPath that)
Determines whether this path is a prefix of the given other path.java.lang.String
MatcherPath. toString(MatcherPath skipPrefix)
Constructors in org.parboiled.support with parameters of type MatcherPath Constructor Description MatcherPath(MatcherPath.Element element, MatcherPath parent)
Constructs a new MatcherPath wrapping the given elements.
-