Java javax.mail BodyPart fields, constructors, methods, implement or subclass

Example usage for Java javax.mail BodyPart fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.mail BodyPart.

The text is from its open source code.

Method

voidaddHeader(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.
ObjectgetContent()
Return the content as a Java object.
StringgetContentType()
Returns the Content-Type of the content of this part.
DataHandlergetDataHandler()
Return a DataHandler for the content within this part.
StringgetDescription()
Return a description String for this part.
StringgetDisposition()
Return the disposition of this part.
StringgetFileName()
Get the filename associated with this part, if possible.
String[]getHeader(String header_name)
Get all the headers for this header name.
InputStreamgetInputStream()
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.
MultipartgetParent()
Return the containing Multipart object, or null if not known.
intgetSize()
Return the size of the content of this part in bytes.
booleanisMimeType(String mimeType)
Is this Part of the specified MIME type?
voidremoveHeader(String header_name)
Remove all headers with this name.
voidsetContent(Object obj, String type)
A convenience method for setting this part's content.
voidsetContent(Multipart mp)
This method sets the given Multipart object as this message's content.
voidsetDataHandler(DataHandler dh)
This method provides the mechanism to set this part's content.
voidsetDescription(String description)
Set a description String for this part.
voidsetDisposition(String disposition)
Set the disposition of this part.
voidsetFileName(String filename)
Set the filename associated with this part, if possible.
voidsetHeader(String header_name, String header_value)
Set the value for this header_name.
voidsetText(String text)
A convenience method that sets the given String as this part's content with a MIME type of "text/plain".
voidwriteTo(OutputStream os)
Output a bytestream for this Part.