TokenIteratorpublic interface TokenIterator implements IteratorAn iterator for {@link String} tokens.
This interface is designed as a complement to
{@link HeaderElementIterator}, in cases where the items
are plain strings rather than full header elements. |
Methods Summary |
---|
public boolean | hasNext()Indicates whether there is another token in this iteration.
| public java.lang.String | nextToken()Obtains the next token from this iteration.
This method should only be called while {@link #hasNext hasNext}
is true.
|
|