API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.xml.soap. MimeHeaders View Source
Author(s)
Since
Version
Serial
Hierarchy
 Object
      MimeHeaders
Implements
Subclasses
Description
public class MimeHeaders
  A container for MimeHeader objects, which represent the MIME headers present in a MIME part of a message.
Constructors
public MimeHeaders ()
Constructs a default MimeHeaders object initialized with an empty Vector object.
Methods
Hide/Show inherited methods
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 MimeHeaders 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.
Fields
Hide/Show inherited fields
Nested Classes
  MimeHeaders.MatchingIterator
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar