Interface | Description |
---|---|
ICharacterMatcher |
An interface for determining whether a character matches a particular rule.
|
ICharacterTranslator |
An interface for translating a character into a string.
|
ICharacterTranslatorSource |
A factory for creating character translators depending on the encoding
|
Class | Description |
---|---|
AsciiCharacterMatcher |
An object for matching a set of provided ASCII characters.
|
AsciiCharacterTranslator |
An object that translates selected ASCII characters into equivalent strings.
|
CompoundMatcher |
Combine a set of character matchers.
|
DefaultCharacterTranslatorSource |
The default implementation of a character translator source.
|
ExtendedReader |
A Reader that provides some additional functionality, such as peek().
|
InverseMatcher |
Matches a given character only if the provided object does NOT match it.
|
LocalizedProperties |
A version of java.util.Properties that can read the properties from files
using an encoding other than ISO-8859-1.
|
LocalizedPropertiesLoader |
An object that loads a properties file from the provided input stream or reader.
|
MarkupCharacterTranslator |
An object that encodes a character according to rules of the HTML specification,
so that it will be properly parsed by a browser irrespectively of the character
encoding used in the HTML output.
|
WhitespaceMatcher |
Matches a whitespace character.
|