to top
Android APIs
public interface

HeaderIterator

implements Iterator<E>
org.apache.http.HeaderIterator
Known Indirect Subclasses

Class Overview

A type-safe iterator for Header objects.

Summary

Public Methods
abstract boolean hasNext()
Indicates whether there is another header in this iteration.
abstract Header nextHeader()
Obtains the next header from this iteration.
[Expand]
Inherited Methods
From interface java.util.Iterator

Public Methods

public abstract boolean hasNext ()

Added in API level 1

Indicates whether there is another header in this iteration.

Returns
  • true if there is another header, false otherwise

public abstract Header nextHeader ()

Added in API level 1

Obtains the next header from this iteration. This method should only be called while hasNext is true.

Returns
  • the next header in this iteration
No examples for this method.
Frequently called with: [Clear]
Portions of this page are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License. The original page is available here.