| Package | Description |
|---|---|
| org.parboiled.matchers | |
| org.parboiled.support |
| 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.
|
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.
|
| 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.
|