Package org.jparsec
Class ReluctantBetweenParser<T>
- java.lang.Object
-
- org.jparsec.Parser<T>
-
- org.jparsec.ReluctantBetweenParser<T>
-
@Deprecated final class ReluctantBetweenParser<T> extends Parser<T>
Deprecated.A parser that first consumes the start and end, and then tries to consume the middle. Useful when the end terminator may be present in the body (e.g.(bodyWithParens ()())())
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.jparsec.Parser
Parser.Mode, Parser.Reference<T>
-
-
Constructor Summary
Constructors Constructor Description ReluctantBetweenParser(Parser<?> start, Parser<T> between, Parser<?> end)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description (package private) boolean
apply(ParseContext ctxt)
Deprecated.-
Methods inherited from class org.jparsec.Parser
asDelimiter, asOptional, atLeast, atomic, between, cast, endBy, endBy1, fails, followedBy, from, from, getReturn, ifelse, ifelse, infixl, infixn, infixr, label, lexer, many, many1, map, newReference, next, next, not, not, notFollowedBy, optional, optional, or, otherwise, parse, parse, parse, parse, parse, parseTree, peek, postfix, prefix, read, reluctantBetween, retn, sepBy, sepBy1, sepEndBy, sepEndBy1, skipAtLeast, skipMany, skipMany1, skipTimes, skipTimes, source, succeeds, times, times, token, until, withSource
-
-
-
-
Method Detail
-
apply
boolean apply(ParseContext ctxt)
Deprecated.
-
-