Uses of Class
javax.mail.Message.RecipientType

Packages that use Message.RecipientType
javax.mail   
javax.mail.internet   
javax.mail.search   
 

Uses of Message.RecipientType in javax.mail
 

Fields in javax.mail declared as Message.RecipientType
static Message.RecipientType Message.RecipientType.BCC
          A "Bcc" or blind carbon-copy recipient.
static Message.RecipientType Message.RecipientType.CC
          A "Cc" or carbon-copy recipient.
static Message.RecipientType Message.RecipientType.TO
          A "To" or primary recipient.
 

Methods in javax.mail with parameters of type Message.RecipientType
 void Message.addRecipient(Message.RecipientType type, Address address)
          Add a recipent of a specified type.
abstract  void Message.addRecipients(Message.RecipientType type, Address[] addresses)
          Add recipents of a specified type.
abstract  Address[] Message.getRecipients(Message.RecipientType type)
          Get all recipients of the given type.
 void Message.setRecipient(Message.RecipientType type, Address address)
          Set the list of recipients for the specified type to a single address.
abstract  void Message.setRecipients(Message.RecipientType type, Address[] addresses)
          Set the list of recipients for the specified type.
 

Uses of Message.RecipientType in javax.mail.internet
 

Subclasses of Message.RecipientType in javax.mail.internet
static class MimeMessage.RecipientType
          Extends Message.RecipientType to support addition recipient types.
 

Methods in javax.mail.internet with parameters of type Message.RecipientType
 void MimeMessage.addRecipients(Message.RecipientType type, Address[] address)
          Add a list of addresses to a target recipient list.
 void MimeMessage.addRecipients(Message.RecipientType type, String address)
          Add an address to a target recipient list by string name.
 Address[] MimeMessage.getRecipients(Message.RecipientType type)
          Gets the recipients by type.
 void MimeMessage.setRecipients(Message.RecipientType type, Address[] addresses)
          Set a recipients list for a particular recipient type.
 void MimeMessage.setRecipients(Message.RecipientType type, String address)
          Set a recipient field to a string address (which may be a list or group type).
 

Uses of Message.RecipientType in javax.mail.search
 

Fields in javax.mail.search declared as Message.RecipientType
protected  Message.RecipientType RecipientTerm.type
           
 

Methods in javax.mail.search that return Message.RecipientType
 Message.RecipientType RecipientTerm.getRecipientType()
           
 Message.RecipientType RecipientStringTerm.getRecipientType()
           
 

Constructors in javax.mail.search with parameters of type Message.RecipientType
RecipientStringTerm(Message.RecipientType type, String pattern)
           
RecipientTerm(Message.RecipientType type, Address address)
           
 



Copyright © 2003-2009 The Apache Software Foundation. All Rights Reserved.