Uses of Interface
eu.bandm.tools.util2.TunableParser.CharSet
Packages that use 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
Fields in eu.bandm.tools.d2d2.parser2 declared as TunableParser.CharSetModifier and TypeFieldDescription(package private) final @Opt TunableParser.CharSetTLex.ConsumeOrShift.csstatic final TunableParser.CharSetTLex.cs_allstatic final TunableParser.CharSetTLex.cs_decDigitstatic final TunableParser.CharSetTLex.cs_decDigit_1_9static final TunableParser.CharSetTLex.cs_hexDigitstatic final TunableParser.CharSetTLex.cs_identPartstatic final TunableParser.CharSetTLex.cs_identStartstatic final TunableParser.CharSetTLex.cs_wsATTENTION includes backspace according to Java definitions.Methods in eu.bandm.tools.d2d2.parser2 with parameters of type TunableParser.CharSetModifier 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) Constructors in eu.bandm.tools.d2d2.parser2 with parameters of type TunableParser.CharSetModifierConstructorDescriptionprotectedprotectedConsumeOrShift(char c, @Opt TunableParser.CharSet cs, @Opt TLex.Item<DD, TT> continuation) protected -
Uses of TunableParser.CharSet in eu.bandm.tools.util2
Classes in eu.bandm.tools.util2 that implement TunableParser.CharSetModifier and TypeClassDescriptionstatic classAuxiliary class which realizes a character set by aBitSet.Fields in eu.bandm.tools.util2 declared as TunableParser.CharSetModifier and TypeFieldDescriptionstatic final TunableParser.CharSetTunableParserForXml.asciiLetterSetThe letters in ascii.static final TunableParser.CharSetTunableParserForXml.encNameSetChars which can appear in an XML 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 standard.static final TunableParser.CharSetTunableParserForXml.nameSetChars which can appear as subsequent characters of an identifier, as defined by "Name" nonterminal of the XML 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 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.util2 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.