Uses of Class
org.parboiled.support.Characters
Packages that use Characters
-
Uses of Characters in org.parboiled.matchers
Fields in org.parboiled.matchers declared as CharactersConstructors in org.parboiled.matchers with parameters of type Characters -
Uses of Characters in org.parboiled.support
Fields in org.parboiled.support declared as CharactersModifier and TypeFieldDescriptionstatic final CharactersCharacters.ALLThe Characters set including all character.static final CharactersCharacters.NONEThe empty Characters setMethods in org.parboiled.support that return CharactersModifier and TypeMethodDescriptionCharacters.add(char c) Adds the given character to the set.Characters.add(Characters other) Returns a new Characters object containing all the characters of this instance plus all characters of the given instance.static CharactersCharacters.allBut(char c) Creates a new Characters instance containing all characters minus the given one.static CharactersCharacters.allBut(char... chars) Creates a new Characters instance containing all characters minus the given ones.static CharactersCreates a new Characters instance containing all characters minus the given ones.static CharactersCharacters.of(char c) Creates a new Characters instance containing only the given char.static CharactersCharacters.of(char... chars) Creates a new Characters instance containing only the given chars.static CharactersCreates a new Characters instance containing only the given chars.Characters.remove(char c) Removes the given character from the set.Characters.remove(Characters other) Returns a new Characters object containing all the characters of this instance minus all characters of the given instance.Methods in org.parboiled.support with parameters of type CharactersModifier and TypeMethodDescriptionCharacters.add(Characters other) Returns a new Characters object containing all the characters of this instance plus all characters of the given instance.Characters.remove(Characters other) Returns a new Characters object containing all the characters of this instance minus all characters of the given instance.