Uses of Class
pobs.PMatch

Packages that use PMatch
pobs Interfaces and basic classes of the framework.  
pobs.parser   
 

Uses of PMatch in pobs
 

Fields in pobs declared as PMatch
static PMatch PMatch.TRUE
          Convenient constant for single character parsers.
static PMatch PMatch.FALSE
          Convenient constant for single character parsers.
 

Methods in pobs that return PMatch
 PMatch PParser.process(PScanner input, long begin, PContext context)
          Parses specified input and invokes actions if defined.
 PMatch PObject.process(PScanner input, long begin, PContext context)
          Processes the input from the specified begin offset using the specified context.
 PMatch PDirective.alternative(PMatch a, PMatch b)
          Determines the match of two matches based upon the alternatives directive.
 

Methods in pobs with parameters of type PMatch
 PMatch PDirective.alternative(PMatch a, PMatch b)
          Determines the match of two matches based upon the alternatives directive.
 

Uses of PMatch in pobs.parser
 

Methods in pobs.parser that return PMatch
 PMatch PWhitespace.parse(PScanner input, long begin, PContext context)
           
 PMatch PUnicodeBlock.parse(PScanner input, long begin, PContext context)
           
 PMatch PUnicode.parse(PScanner input, long begin, PContext context)
           
 PMatch PTokens.parse(PScanner input, long begin, PContext context)
           
 PMatch PToken.parse(PScanner input, long begin, PContext context)
           
 PMatch PSet.parse(PScanner input, long begin, PContext context)
           
 PMatch PSequence.parse(PScanner input, long begin, PContext context)
           
 PMatch PRepeat.parse(PScanner input, long begin, PContext context)
           
 PMatch PPointer.process(PScanner input, long begin, PContext context)
          Delegates call to the wrapped parser object.
 PMatch POr.parse(PScanner input, long begin, PContext context)
           
 PMatch POptional.parse(PScanner input, long begin, PContext context)
           
 PMatch PList.parse(PScanner input, long begin, PContext context)
          Matches the specified number of items in a delimited list.
 PMatch PLimit.parse(PScanner input, long begin, PContext context)
          Matches if the numerical (parsed as double) data parsed by the specified parser is within the specified minimal and maximum boundaries, inclusive.
 PMatch PLetter.parse(PScanner input, long begin, PContext context)
           
 PMatch PExcept.parse(PScanner input, long begin, PContext context)
           
 PMatch PEOL.parse(PScanner input, long begin, PContext context)
          Matches the Cariage Return and/or Line Feed characters in any known order, only one of each may appear.
 PMatch PEnd.parse(PScanner input, long begin, PContext context)
           
 PMatch PDigit.parse(PScanner input, long begin, PContext context)
          Checks if there is any input left and matches any single character as defined by java.lang.Character.isDigit.
 PMatch PChar.parse(PScanner input, long begin, PContext context)
          Determines if there is any input left and returns a succesful match if the next character on input matches the specified character.
 PMatch PAny.parse(PScanner input, long begin, PContext context)