Package | Description |
---|---|
org.parboiled | |
org.parboiled.matchers | |
org.parboiled.support |
Modifier and Type | Method and Description |
---|---|
Rule |
BaseParser.AnyOf(Characters characters)
Creates a new rule that matches any of the given characters.
|
Modifier and Type | Field and Description |
---|---|
Characters |
AnyOfMatcher.characters |
Constructor and Description |
---|
AnyOfMatcher(Characters characters) |
Modifier and Type | Field and Description |
---|---|
static Characters |
Characters.ALL
The Characters set including all character.
|
static Characters |
Characters.NONE
The empty Characters set
|
Modifier and Type | Method and Description |
---|---|
Characters |
Characters.add(char c)
Adds the given character to the set.
|
Characters |
Characters.add(Characters other)
Returns a new Characters object containing all the characters of this instance plus all characters of the
given instance.
|
private Characters |
Characters.addToChars(char c) |
private Characters |
Characters.addToChars(char[] chs) |
static Characters |
Characters.allBut(char... chars)
Creates a new Characters instance containing all characters minus the given ones.
|
static Characters |
Characters.allBut(char c)
Creates a new Characters instance containing all characters minus the given one.
|
static Characters |
Characters.allBut(java.lang.String chars)
Creates a new Characters instance containing all characters minus the given ones.
|
static Characters |
Characters.of(char... chars)
Creates a new Characters instance containing only the given chars.
|
static Characters |
Characters.of(char c)
Creates a new Characters instance containing only the given char.
|
static Characters |
Characters.of(java.lang.String chars)
Creates a new Characters instance containing only the given chars.
|
Characters |
Characters.remove(char c)
Removes the given character from the set.
|
Characters |
Characters.remove(Characters other)
Returns a new Characters object containing all the characters of this instance minus all characters of the
given instance.
|
private Characters |
Characters.removeFromChars(char c) |
private Characters |
Characters.removeFromChars(char[] chs) |
private Characters |
Characters.retainAllChars(char[] chs) |
Modifier and Type | Method and Description |
---|---|
Characters |
Characters.add(Characters other)
Returns a new Characters object containing all the characters of this instance plus all characters of the
given instance.
|
Characters |
Characters.remove(Characters other)
Returns a new Characters object containing all the characters of this instance minus all characters of the
given instance.
|