Uses of Interface
eu.bandm.tools.rdparser.TunableParser.CharSet
-
Uses of TunableParser.CharSet in eu.bandm.tools.rdparser
Modifier and TypeClassDescriptionstatic class
Auxiliary class which realizes a character set by aBitSet
.Modifier and TypeFieldDescriptionstatic final TunableParser.CharSet
TunableParserForXml.asciiLetterSet
The letters in ascii.static final TunableParser.CharSet
TunableParserForXml.encNameSet
Chars which can appear in an XML 1.0 encoding name.static final TunableParser.CharSet
TunableParserForXml.initialSet
Chars which can appear as the initial character of an identifier, as defined by "Name" nonterminal of the XML 1.0 standard.static final TunableParser.CharSet
TunableParserForXml.nameSet
Chars which can appear as subsequent characters of an identifier, as defined by "Name" nonterminal of the XML 1.0 standard.static final TunableParser.CharSet
TunableParserForXml.sNoPESet
Chars which are the alternatives for XML whitespace, excluding parameter entities.static final TunableParser.CharSet
TunableParserForXml.sSet
Chars which are the alternatives for XML 1.0 whitespace including the starting character of parameter enttities.static final TunableParser.CharSet
TunableParserForXml.versionNumSet
Chars which can appear in an XML version declaration.Modifier and TypeMethodDescriptionprotected final boolean
TunableParser.lookahead
(int k, TunableParser.CharSet s) Returns whether the next character after (k-1) consumptions would be contained in the parameter.protected final boolean
TunableParser.lookahead
(TunableParser.CharSet s) Returns whether the next character to read is contained in the parameter.protected final char
TunableParser.match
(TunableParser.CharSet s) Call toTunableParser.lookahead(CharSet)
,must succeed, thenTunableParser.consume()
.protected final boolean
TunableParser.matchahead
(TunableParser.CharSet s) LikeTunableParser.lookahead(CharSet)
, and thenTunableParser.consume()
if success.protected String
TunableParser.word
(TunableParser.CharSet alphabet) Accept any sequence of characters from the given set, including the empty word, and return it.