Motivation: The Headers interface supports an interface to get all the headers values corresponding to a particular name. This API returns a List which requires intermediate storage and increases GC pressure. Modifications: - Add a method which returns an iterator over all the values for a specific name Result: Ability to iterator over values for a specific name with no intermediate collection.