Uses of Interface
eu.bandm.tools.util2.TunableParser.CharSet
Package
Description
Ubiquitously needed auxiliary classes which need the
eu.bandm.tools.message
package.-
Uses of TunableParser.CharSet in eu.bandm.tools.d2d2.parser2
Modifier and TypeFieldDescription(package private) final @Opt TunableParser.CharSet
TLex.ConsumeOrShift.cs
static final TunableParser.CharSet
TLex.cs_all
static final TunableParser.CharSet
TLex.cs_decDigit
static final TunableParser.CharSet
TLex.cs_decDigit_1_9
static final TunableParser.CharSet
TLex.cs_hexDigit
static final TunableParser.CharSet
TLex.cs_identPart
static final TunableParser.CharSet
TLex.cs_identStart
static final TunableParser.CharSet
TLex.cs_ws
ATTENTION includes backspace according to Java definitions.Modifier and TypeMethodDescriptionstatic <DD,
TT> TLex.Consume<DD, TT> TLex.consume
(TunableParser.CharSet cs) static <DD,
TT> TLex.Consume<DD, TT> TLex.consume
(TunableParser.CharSet cs, @Opt TLex.Item<DD, TT> continuation) static <DD,
TT> TLex.Shift<DD, TT> TLex.shift
(TunableParser.CharSet cs) static <DD,
TT> TLex.Shift<DD, TT> TLex.shift
(TunableParser.CharSet cs, @Opt TLex.Item<DD, TT> continuation) ModifierConstructorDescriptionprotected
protected
ConsumeOrShift
(char c, @Opt TunableParser.CharSet cs, @Opt TLex.Item<DD, TT> continuation) protected
-
Uses of TunableParser.CharSet in eu.bandm.tools.util2
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 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 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 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 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.