FileDocCategorySizeDatePackage
TokenIterator.javaAPI DocAndroid 1.5 API2238Wed May 06 22:41:10 BST 2009org.apache.http

TokenIterator

public interface TokenIterator implements Iterator
An 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.
version
$Revision: 601000 $

Fields Summary
Constructors Summary
Methods Summary
public booleanhasNext()
Indicates whether there is another token in this iteration.

return
true if there is another token, false otherwise

public java.lang.StringnextToken()
Obtains the next token from this iteration. This method should only be called while {@link #hasNext hasNext} is true.

return
the next token in this iteration