Uses of Class
javax.mail.BodyPart
-
Packages that use BodyPart Package Description com.sun.mail.imap An IMAP protocol provider for the Jakarta Mail API that provides access to an IMAP message store.javax.mail The Jakarta Mail API provides classes that model a mail system.javax.mail.internet Classes specific to Internet mail systems. -
-
Uses of BodyPart in com.sun.mail.imap
Subclasses of BodyPart in com.sun.mail.imap Modifier and Type Class Description classIMAPBodyPartAn IMAP body part.Methods in com.sun.mail.imap that return BodyPart Modifier and Type Method Description BodyPartIMAPMultipartDataSource. getBodyPart(int index) -
Uses of BodyPart in javax.mail
Fields in javax.mail with type parameters of type BodyPart Modifier and Type Field Description protected Vector<BodyPart>Multipart. partsVector of BodyPart objects.Methods in javax.mail that return BodyPart Modifier and Type Method Description BodyPartMultipart. getBodyPart(int index)Get the specified Part.BodyPartMultipartDataSource. getBodyPart(int index)Get the specified Part.Methods in javax.mail with parameters of type BodyPart Modifier and Type Method Description voidMultipart. addBodyPart(BodyPart part)Adds a Part to the multipart.voidMultipart. addBodyPart(BodyPart part, int index)Adds a BodyPart at positionindex.booleanMultipart. removeBodyPart(BodyPart part)Remove the specified part from the multipart message. -
Uses of BodyPart in javax.mail.internet
Subclasses of BodyPart in javax.mail.internet Modifier and Type Class Description classMimeBodyPartThis class represents a MIME body part.classPreencodedMimeBodyPartA MimeBodyPart that handles data that has already been encoded.Methods in javax.mail.internet that return BodyPart Modifier and Type Method Description BodyPartMimeMultipart. getBodyPart(int index)Get the specified BodyPart.BodyPartMimeMultipart. getBodyPart(String CID)Get the MimeBodyPart referred to by the given ContentID (CID).Methods in javax.mail.internet with parameters of type BodyPart Modifier and Type Method Description voidMimeMultipart. addBodyPart(BodyPart part)Adds a Part to the multipart.voidMimeMultipart. addBodyPart(BodyPart part, int index)Adds a BodyPart at positionindex.booleanMimeMultipart. removeBodyPart(BodyPart part)Remove the specified part from the multipart message.Constructors in javax.mail.internet with parameters of type BodyPart Constructor Description MimeMultipart(String subtype, BodyPart... parts)Construct a MimeMultipart object of the given subtype and with the given body parts.MimeMultipart(BodyPart... parts)Construct a MimeMultipart object of the default "mixed" subtype, and with the given body parts.
-