Uses of Class
javax.mail.BodyPart
-
Packages that use BodyPart Package Description gnu.mail.providers.imap This is a provider for the Internet Message Access Protocol, version 4rev1 (IMAP4rev1), as detailed in RFC 3501.javax.mail Classes modelling a mail system.javax.mail.internet Classes modelling Internet mail systems. -
-
Uses of BodyPart in gnu.mail.providers.imap
Subclasses of BodyPart in gnu.mail.providers.imap Modifier and Type Class Description class
IMAPBodyPart
A MIME body part of an IMAP multipart message.Methods in gnu.mail.providers.imap that return BodyPart Modifier and Type Method Description BodyPart
IMAPMultipartDataSource. getBodyPart(int index)
Returns the secified sub-part of the multipart. -
Uses of BodyPart in javax.mail
Methods in javax.mail that return BodyPart Modifier and Type Method Description BodyPart
Multipart. getBodyPart(int index)
Get the specified body part.BodyPart
MultipartDataSource. getBodyPart(int index)
Returns the specified body part.Methods in javax.mail with parameters of type BodyPart Modifier and Type Method Description void
Multipart. addBodyPart(BodyPart part)
Adds a body part to this multipart.void
Multipart. addBodyPart(BodyPart part, int index)
Inserts a body part at the specified index.boolean
Multipart. removeBodyPart(BodyPart part)
Removes the specified body part from this multipart. -
Uses of BodyPart in javax.mail.internet
Subclasses of BodyPart in javax.mail.internet Modifier and Type Class Description class
MimeBodyPart
A MIME body part.Methods in javax.mail.internet that return BodyPart Modifier and Type Method Description BodyPart
MimeMultipart. getBodyPart(int index)
Returns the specified body part.BodyPart
MimeMultipart. getBodyPart(java.lang.String CID)
Returns the body part identified by the given Content-ID (CID).
-