Uses of Class
javax.mail.BodyPart
Packages that use BodyPart
Package
Description
Support for creating and parsing Delivery Status Notifications.
The JavaMail™ API
provides classes that model a mail system.
Classes specific to Internet mail systems.
-
Uses of BodyPart in com.sun.mail.dsn
Methods in com.sun.mail.dsn with parameters of type BodyPartModifier and TypeMethodDescriptionvoidMultipartReport.addBodyPart(BodyPart part) Adds a Part to the multipart.voidMultipartReport.addBodyPart(BodyPart part, int index) Adds a BodyPart at positionindex.booleanMultipartReport.removeBodyPart(BodyPart part) Remove the specified part from the multipart message. -
Uses of BodyPart in javax.mail
Fields in javax.mail with type parameters of type BodyPartMethods in javax.mail that return BodyPartModifier and TypeMethodDescriptionMultipart.getBodyPart(int index) Get the specified Part.MultipartDataSource.getBodyPart(int index) Get the specified Part.Methods in javax.mail with parameters of type BodyPartModifier and TypeMethodDescriptionvoidMultipart.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.internetModifier and TypeClassDescriptionclassThis class represents a MIME body part.classA MimeBodyPart that handles data that has already been encoded.Methods in javax.mail.internet that return BodyPartModifier and TypeMethodDescriptionMimeMultipart.getBodyPart(int index) Get the specified BodyPart.MimeMultipart.getBodyPart(String CID) Get the MimeBodyPart referred to by the given ContentID (CID).Methods in javax.mail.internet with parameters of type BodyPartModifier and TypeMethodDescriptionvoidMimeMultipart.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 BodyPartModifierConstructorDescriptionMimeMultipart(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.