| Package | Description |
|---|---|
| com.google.gdata.util.parser |
A framework for creating recursive descent parsers.
|
| Modifier and Type | Field and Description |
|---|---|
static Chset |
Chset.ALNUM |
static Chset |
Chset.ALPHA |
static Chset |
Chset.ANYCHAR |
static Chset |
Chset.ASCII |
static Chset |
Chset.DIGIT |
static Chset |
Chset.LOWER |
static Chset |
Chset.NOTHING |
static Chset |
Chset.UPPER |
static Chset |
Chset.WHITESPACE |
static Chset |
Chset.XDIGIT |
| Modifier and Type | Method and Description |
|---|---|
static Chset |
Chset.difference(Chset left,
Chset right)
Creates a new character set which matches a character if that character
matches the
left character set but does not match the
right character set. |
static Chset |
Chset.intersection(Chset left,
Chset right)
Creates a new character set which matches a character if that character
matches both the
left and right character sets. |
static Chset |
Chset.not(Chset subject)
Creates a new character set which matches a character if that character
does not match the
subject character set. |
static Chset |
Chset.union(Chset left,
Chset right)
Creates a new character set which matches a character if that character
matches either the
left or right character sets. |
static Chset |
Chset.xor(Chset left,
Chset right)
Creates a new character set which matches a character if that character
matches the
left character set or the right
character set, but not both. |
| Modifier and Type | Method and Description |
|---|---|
static Chset |
Chset.difference(Chset left,
Chset right)
Creates a new character set which matches a character if that character
matches the
left character set but does not match the
right character set. |
static Chset |
Chset.intersection(Chset left,
Chset right)
Creates a new character set which matches a character if that character
matches both the
left and right character sets. |
static Chset |
Chset.not(Chset subject)
Creates a new character set which matches a character if that character
does not match the
subject character set. |
static Chset |
Chset.union(Chset left,
Chset right)
Creates a new character set which matches a character if that character
matches either the
left or right character sets. |
static Chset |
Chset.xor(Chset left,
Chset right)
Creates a new character set which matches a character if that character
matches the
left character set or the right
character set, but not both. |
Copyright © 2012. All Rights Reserved.