Method Summary |
|
public void | addHeader(String name, String value) Adds a MimeHeader object with the specified name and value
to this MimeHeaders object's list of headers. |
public Iterator | getAllHeaders() Returns all the MimeHeader s in this MimeHeaders object. |
public String[] | getHeader(String name) Returns all of the values for the specified header as an array of
String objects. |
public Iterator | getMatchingHeaders(String[] names) Returns all the MimeHeader objects whose name matches
a name in the given array of names. |
public Iterator | getNonMatchingHeaders(String[] names) Returns all of the MimeHeader objects whose name does not
match a name in the given array of names. |
public void | removeAllHeaders() Removes all the header entries from this MimeHeaders object. |
public void | removeHeader(String name) Remove all MimeHeader objects whose name matches the
given name. |
public void | setHeader(String name, String value) Replaces the current value of the first header entry whose name matches
the given name with the given value, adding a new header if no existing header
name matches. |