![]() |
GrammarScope
4.0.0
|
Public Member Functions | |
T | next () |
boolean | hasNext () |
void | remove () |
T | peek () |
List< T > | tokenize () |
Tokenizers break up text into individual Objects. These objects may be Strings, Words, or other Objects. A Tokenizer extends the Iterator interface, but provides a lookahead operation peek()
. An implementation of this interface is expected to have a constructor that takes a single argument, a Reader.
boolean grammarscope.io.read.Tokenizer< T >.hasNext | ( | ) |
Returns true
if and only if this Tokenizer has more elements.
Implemented in grammarscope.io.read.AbstractTokenizer< T >.
T grammarscope.io.read.Tokenizer< T >.next | ( | ) |
Returns the next token from this Tokenizer.
java.util.NoSuchElementException | if the token stream has no more tokens. |
Implemented in grammarscope.io.read.AbstractTokenizer< T >.
T grammarscope.io.read.Tokenizer< T >.peek | ( | ) |
Returns the next token, without removing it, from the Tokenizer, so that the same token will be again returned on the next call to next() or peek().
java.util.NoSuchElementException | if the token stream has no more tokens. |
Implemented in grammarscope.io.read.AbstractTokenizer< T >.
void grammarscope.io.read.Tokenizer< T >.remove | ( | ) |
Removes from the underlying collection the last element returned by the iterator. This is an optional operation for Iterators - a Tokenizer normally would not support it. This method can be called only once per call to next.
Implemented in grammarscope.io.read.AbstractTokenizer< T >.
List<T> grammarscope.io.read.Tokenizer< T >.tokenize | ( | ) |
Returns all tokens of this Tokenizer as a List for convenience.
Implemented in grammarscope.io.read.AbstractTokenizer< T >.