Package | Description |
---|---|
eu.bandm.tools.util2 |
Ubiquitously needed auxiliary classes which need the
eu.bandm.tools.message package. |
Modifier and Type | Class and Description |
---|---|
static class |
TunableParser.ExtensionalCharSet
Auxiliary class which realizes a character set by a
BitSet . |
Modifier and Type | Field and Description |
---|---|
static TunableParser.CharSet |
TunableParserForXml.asciiLetterSet
The letters in ascii.
|
static TunableParser.CharSet |
TunableParserForXml.encNameSet
Chars which can appear in an XML encoding name.
|
static TunableParser.CharSet |
TunableParserForXml.initialSet
Chars which can appear as the initial character of an identifier,
as defined by "Name" nonterminal of the XML standard.
|
static TunableParser.CharSet |
TunableParserForXml.nameSet
Chars which can appear as subsequent characters of an identifier,
as defined by "Name" nonterminal of the XML standard.
|
static TunableParser.CharSet |
TunableParserForXml.sNoPESet
Chars which are the alternatives for XML whitespace, excluding parameter
entities.
|
static TunableParser.CharSet |
TunableParserForXml.sSet
Chars which are the alternatives for XML whitespace including
the starting character of parameter enttities.
|
static TunableParser.CharSet |
TunableParserForXml.versionNumSet
Chars which can appear in an XML version declaration.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
TunableParser.lookahead(int k,
TunableParser.CharSet s)
Returns whether the next character after (k-1) consumptions would be
contained in the parameter.
|
protected boolean |
TunableParser.lookahead(TunableParser.CharSet s)
Returns whether the next character to read is contained in the parameter.
|
protected char |
TunableParser.match(TunableParser.CharSet s)
Call to
TunableParser.lookahead(CharSet) ,must succeed, then TunableParser.consume() . |
protected boolean |
TunableParser.matchahead(TunableParser.CharSet s)
Like
TunableParser.lookahead(CharSet) , and then TunableParser.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.
|
see also the complete user documentation .