Uses of Class
com.openexchange.mail.mime.HeaderCollection

Packages that use HeaderCollection
com.openexchange.mail.dataobjects   
com.openexchange.mail.mime   
com.openexchange.mail.mime.converters   
 

Uses of HeaderCollection in com.openexchange.mail.dataobjects
 

Methods in com.openexchange.mail.dataobjects that return HeaderCollection
 HeaderCollection MailPart.getHeaders()
          Gets a read-only version of this part's headers
 

Methods in com.openexchange.mail.dataobjects with parameters of type HeaderCollection
 void MailPart.addHeaders(HeaderCollection headers)
          Adds a header collection
 

Uses of HeaderCollection in com.openexchange.mail.mime
 

Fields in com.openexchange.mail.mime declared as HeaderCollection
static HeaderCollection HeaderCollection.EMPTY_COLLECTION
          Read-only constant for an empty header collection
 

Methods in com.openexchange.mail.mime that return HeaderCollection
 HeaderCollection HeaderCollection.addHeader(java.lang.String name, java.lang.String value)
          Adds a header with the specified name and value The current implementation knows about the preferred order of most well-known headers and will insert headers in that order.
 HeaderCollection HeaderCollection.getReadOnlyCollection()
          Gets a read-only collection constructed from this collection's current content
 HeaderCollection HeaderCollection.removeHeader(java.lang.String name)
          Remove all header entries that match the given name
 HeaderCollection HeaderCollection.setHeader(java.lang.String name, java.lang.String value)
          Change the first header that matches name to have value, adding a new header if no existing header matches.
 

Methods in com.openexchange.mail.mime with parameters of type HeaderCollection
 void HeaderCollection.addHeaders(HeaderCollection headers)
          Adds the specified header collection to this header collection.
 

Constructors in com.openexchange.mail.mime with parameters of type HeaderCollection
HeaderCollection(HeaderCollection headers)
          Copy constructor for HeaderCollection
 

Uses of HeaderCollection in com.openexchange.mail.mime.converters
 

Methods in com.openexchange.mail.mime.converters that return HeaderCollection
static HeaderCollection MIMEMessageConverter.loadHeaders(byte[] bytes)
          Parses given headers' byte array into a collection until EOF or 2 subsequent CRLFs occur.
static HeaderCollection MIMEMessageConverter.loadHeaders(java.io.InputStream inputStream)
          Parses given headers' input stream into a collection until EOF or 2 subsequent CRLFs occur.
static HeaderCollection MIMEMessageConverter.loadHeaders(java.lang.String messageSrc)
          Parses given message source's headers into a collection until EOF or 2 subsequent CRLFs occur.