Interface | Description |
---|---|
Token |
Interface for a meaningful chunk of text, called a token.
|
Tokenizer |
Interface for a class that converts strings into tokens.
|
Class | Description |
---|---|
AbstractCharacterBasedTokenizer |
An abstract implementation of a tokenizer that considers each character
individually.
|
AbstractTokenizer |
Abstract implementation of the
Tokenizer interface. |
DefaultToken |
A default implementation of the
Token interface. |
LetterNumberTokenizer |
A tokenizer that creates tokens from sequences of letters and numbers,
treating everything else as a delimiter.
|