Example usage for Java javax.mail BodyPart 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 | getAllHeaders() Return all the headers from this part as an Enumeration of Header objects. |
Object | getContent() Return the content as a Java object. |
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 | getFileName() Get the filename associated with this part, if possible. |
String[] | getHeader(String header_name) Get all the headers for this header name. |
InputStream | getInputStream() Return an input stream for this part's "content". |
Enumeration | getMatchingHeaders(String[] header_names) Return matching headers from this part as an Enumeration of Header objects. |
Enumeration | getNonMatchingHeaders(String[] header_names) Return non-matching headers from this envelope as an Enumeration of Header objects. |
Multipart | getParent() Return the containing Multipart object, or null if not known. |
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 | setContent(Multipart mp) This method sets the given Multipart object as this message's content. |
void | setDataHandler(DataHandler dh) This method provides the mechanism to set this part's content. |
void | setDescription(String description) Set a description String for this part. |
void | setDisposition(String disposition) Set the disposition of this part. |
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) A convenience method that sets the given String as this part's content with a MIME type of "text/plain". |
void | writeTo(OutputStream os) Output a bytestream for this Part. |