Package | Description |
---|---|
org.apache.tapestry.util.text |
Modifier and Type | Class and Description |
---|---|
class |
AsciiCharacterMatcher
An object for matching a set of provided ASCII characters.
|
class |
CompoundMatcher
Combine a set of character matchers.
|
class |
InverseMatcher
Matches a given character only if the provided object does NOT match it.
|
class |
WhitespaceMatcher
Matches a whitespace character.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
ExtendedReader.readCharacters(ICharacterMatcher matcher)
Reads the next characters until a character that does not match the provided rule is reached.
|
void |
ExtendedReader.skipCharacters(ICharacterMatcher matcher)
Skips the next characters until a character that does not match the provided rule is reached.
|
Constructor and Description |
---|
CompoundMatcher(ICharacterMatcher[] matchers)
Create a new object that will match a character if any of the provided objects matches it.
|
InverseMatcher(ICharacterMatcher matcher)
Creates a new object that inverts the matching rule of the provided matcher
|
MarkupCharacterTranslator(boolean encodeNonAscii,
ICharacterMatcher safeMatcher,
ICharacterTranslator entityTranslator) |