Example usage for Java javax.mail.internet MimePart fields, constructors, methods, implement or subclass
The text is from its open source code.
void | addHeader(String header_name, String header_value) Add this value to the existing values for this header_name. |
Enumeration | getAllHeaderLines() Get all header lines as an Enumeration of Strings. |
Enumeration | getAllHeaders() Return all the headers from this part as an Enumeration of Header objects. |
Object | getContent() Return the content as a Java object. |
String | getContentID() Get the Content-ID of this part. |
String[] | getContentLanguage() Get the language tags specified in the Content-Language header of this MimePart. |
String | getContentMD5() Get the Content-MD5 digest of this part. |
String | getContentType() Returns the Content-Type of the content of this part. |
DataHandler | getDataHandler() Return a DataHandler for the content within this part. |
String | getDescription() Return a description String for this part. |
String | getDisposition() Return the disposition of this part. |
String | getEncoding() Get the transfer encoding of this part. |
String | getFileName() Get the filename associated with this part, if possible. |
String | getHeader(String name, String delimiter) Get the values of all header fields available for this header, returned as a single String, with the values separated by the delimiter. |
String[] | getHeader(String header_name) Get all the headers for this header name. |
InputStream | getInputStream() Return an input stream for this part's "content". |
int | getLineCount() Return the number of lines in the content of this part. |
Enumeration | getMatchingHeaderLines(String[] names) Get matching header lines as an Enumeration of Strings. |
int | getSize() Return the size of the content of this part in bytes. |
boolean | isMimeType(String mimeType) Is this Part of the specified MIME type? |
void | removeHeader(String header_name) Remove all headers with this name. |
void | setContent(Object obj, String type) A convenience method for setting this part's content. |
void | setDataHandler(DataHandler dh) This method provides the mechanism to set this part's content. |
void | setFileName(String filename) Set the filename associated with this part, if possible. |
void | setHeader(String header_name, String header_value) Set the value for this header_name. |
void | setText(String text, String charset) Convenience method that sets the given String as this part's content, with a MIME type of "text/plain" and the specified charset. |
void | writeTo(OutputStream os) Output a bytestream for this Part. |