Uses of Interface
eu.bandm.tools.rdparser.TunableParser.CharSet
Packages that use TunableParser.CharSet
- 
Uses of TunableParser.CharSet in eu.bandm.tools.rdparserClasses in eu.bandm.tools.rdparser that implement TunableParser.CharSetModifier and TypeClassDescriptionstatic classAuxiliary class which realizes a character set by aBitSet.Fields in eu.bandm.tools.rdparser declared as TunableParser.CharSetModifier and TypeFieldDescriptionstatic final TunableParser.CharSetTunableParserForXml.asciiLetterSetThe letters in ascii.static final TunableParser.CharSetTunableParserForXml.encNameSetChars which can appear in an XML 1.0 encoding name.static final TunableParser.CharSetTunableParserForXml.initialSetChars which can appear as the initial character of an identifier, as defined by "Name" nonterminal of the XML 1.0 standard.static final TunableParser.CharSetTunableParserForXml.nameSetChars which can appear as subsequent characters of an identifier, as defined by "Name" nonterminal of the XML 1.0 standard.static final TunableParser.CharSetTunableParserForXml.sNoPESetChars which are the alternatives for XML whitespace, excluding parameter entities.static final TunableParser.CharSetTunableParserForXml.sSetChars which are the alternatives for XML 1.0 whitespace including the starting character of parameter enttities.static final TunableParser.CharSetTunableParserForXml.versionNumSetChars which can appear in an XML version declaration.Methods in eu.bandm.tools.rdparser with parameters of type TunableParser.CharSetModifier and TypeMethodDescriptionprotected final booleanTunableParser.lookahead(int k, TunableParser.CharSet s) Returns whether the next character after (k-1) consumptions would be contained in the parameter.protected final booleanTunableParser.lookahead(TunableParser.CharSet s) Returns whether the next character to read is contained in the parameter.protected final charTunableParser.match(TunableParser.CharSet s) Call toTunableParser.lookahead(CharSet),must succeed, thenTunableParser.consume().protected final booleanTunableParser.matchahead(TunableParser.CharSet s) LikeTunableParser.lookahead(CharSet), and thenTunableParser.consume()if success.protected StringTunableParser.word(TunableParser.CharSet alphabet) Accept any sequence of characters from the given set, including the empty word, and return it.