Uses of Class
jakarta.mail.Message.RecipientType
-
Packages that use Message.RecipientType Package Description com.sun.mail.imap An IMAP protocol provider for the Jakarta Mail API that provides access to an IMAP message store.com.sun.mail.imap.protocol This package includes internal IMAP support classes and SHOULD NOT BE USED DIRECTLY BY APPLICATIONS.jakarta.mail The Jakarta Mail API provides classes that model a mail system.jakarta.mail.internet Classes specific to Internet mail systems.jakarta.mail.search Message search terms for the Jakarta Mail API. -
-
Uses of Message.RecipientType in com.sun.mail.imap
Methods in com.sun.mail.imap with parameters of type Message.RecipientType Modifier and Type Method Description voidIMAPMessage. addRecipients(Message.RecipientType type, Address[] addresses)Address[]IMAPMessage. getRecipients(Message.RecipientType type)Get the desired Recipient type.voidIMAPMessage. setRecipients(Message.RecipientType type, Address[] addresses) -
Uses of Message.RecipientType in com.sun.mail.imap.protocol
Methods in com.sun.mail.imap.protocol with parameters of type Message.RecipientType Modifier and Type Method Description protected ArgumentSearchSequence. recipient(Message.RecipientType type, String address, String charset) -
Uses of Message.RecipientType in jakarta.mail
Fields in jakarta.mail declared as Message.RecipientType Modifier and Type Field Description static Message.RecipientTypeMessage.RecipientType. BCCThe "Bcc" (blind carbon copy) recipients.static Message.RecipientTypeMessage.RecipientType. CCThe "Cc" (carbon copy) recipients.static Message.RecipientTypeMessage.RecipientType. TOThe "To" (primary) recipients.Methods in jakarta.mail with parameters of type Message.RecipientType Modifier and Type Method Description voidMessage. addRecipient(Message.RecipientType type, Address address)Add this recipient address to the existing ones of the given type.abstract voidMessage. addRecipients(Message.RecipientType type, Address[] addresses)Add these recipient addresses to the existing ones of the given type.abstract Address[]Message. getRecipients(Message.RecipientType type)Get all the recipient addresses of the given type.voidMessage. setRecipient(Message.RecipientType type, Address address)Set the recipient address.abstract voidMessage. setRecipients(Message.RecipientType type, Address[] addresses)Set the recipient addresses. -
Uses of Message.RecipientType in jakarta.mail.internet
Subclasses of Message.RecipientType in jakarta.mail.internet Modifier and Type Class Description static classMimeMessage.RecipientTypeThis inner class extends the jakarta.mail.Message.RecipientType class to add additional RecipientTypes.Methods in jakarta.mail.internet with parameters of type Message.RecipientType Modifier and Type Method Description voidMimeMessage. addRecipients(Message.RecipientType type, Address[] addresses)Add the given addresses to the specified recipient type.voidMimeMessage. addRecipients(Message.RecipientType type, String addresses)Add the given addresses to the specified recipient type.Address[]MimeMessage. getRecipients(Message.RecipientType type)Returns the recepients specified by the type.voidMimeMessage. setRecipients(Message.RecipientType type, Address[] addresses)Set the specified recipient type to the given addresses.voidMimeMessage. setRecipients(Message.RecipientType type, String addresses)Set the specified recipient type to the given addresses. -
Uses of Message.RecipientType in jakarta.mail.search
Methods in jakarta.mail.search that return Message.RecipientType Modifier and Type Method Description Message.RecipientTypeRecipientStringTerm. getRecipientType()Return the type of recipient to match with.Message.RecipientTypeRecipientTerm. getRecipientType()Return the type of recipient to match with.Constructors in jakarta.mail.search with parameters of type Message.RecipientType Constructor Description RecipientStringTerm(Message.RecipientType type, String pattern)Constructor.RecipientTerm(Message.RecipientType type, Address address)Constructor.
-