Uses of Class
org.apache.james.mime4j.field.address.Address

Packages that use Address
org.apache.james.mime4j.field   
org.apache.james.mime4j.field.address   
org.apache.james.mime4j.message   
 

Uses of Address in org.apache.james.mime4j.field
 

Methods in org.apache.james.mime4j.field with parameters of type Address
static AddressListField Fields.bcc(Address... addresses)
          Creates a Bcc field for the specified mailbox or group addresses.
static AddressListField Fields.bcc(Address address)
          Creates a Bcc field for the specified mailbox or group address.
static AddressListField Fields.cc(Address... addresses)
          Creates a Cc field for the specified mailbox or group addresses.
static AddressListField Fields.cc(Address address)
          Creates a Cc field for the specified mailbox or group address.
static AddressListField Fields.replyTo(Address... addresses)
          Creates a Reply-To field for the specified mailbox or group addresses.
static AddressListField Fields.replyTo(Address address)
          Creates a Reply-To field for the specified mailbox or group address.
static AddressListField Fields.to(Address... addresses)
          Creates a To field for the specified mailbox or group addresses.
static AddressListField Fields.to(Address address)
          Creates a To field for the specified mailbox or group address.
 

Method parameters in org.apache.james.mime4j.field with type arguments of type Address
static AddressListField Fields.addressList(java.lang.String fieldName, java.lang.Iterable<Address> addresses)
          Creates an address-list field from the specified field name and mailbox or group addresses.
static AddressListField Fields.bcc(java.lang.Iterable<Address> addresses)
          Creates a Bcc field for the specified mailbox or group addresses.
static AddressListField Fields.cc(java.lang.Iterable<Address> addresses)
          Creates a Cc field for the specified mailbox or group addresses.
static AddressListField Fields.replyTo(java.lang.Iterable<Address> addresses)
          Creates a Reply-To field for the specified mailbox or group addresses.
static AddressListField Fields.to(java.lang.Iterable<Address> addresses)
          Creates a To field for the specified mailbox or group addresses.
 

Uses of Address in org.apache.james.mime4j.field.address
 

Subclasses of Address in org.apache.james.mime4j.field.address
 class Group
          A named group of zero or more mailboxes.
 class Mailbox
          Represents a single e-mail address.
 

Methods in org.apache.james.mime4j.field.address that return Address
 Address AddressList.get(int index)
          Gets an address.
static Address Address.parse(java.lang.String rawAddressString)
          Parses the specified raw string into an address.
 

Constructor parameters in org.apache.james.mime4j.field.address with type arguments of type Address
AddressList(java.util.List<? extends Address> addresses, boolean dontCopy)
           
 

Uses of Address in org.apache.james.mime4j.message
 

Methods in org.apache.james.mime4j.message with parameters of type Address
 void Message.setBcc(Address... bcc)
          Sets the Bcc header field of this message to the specified addresses.
 void Message.setBcc(Address bcc)
          Sets the Bcc header field of this message to the specified address.
 void Message.setCc(Address... cc)
          Sets the Cc header field of this message to the specified addresses.
 void Message.setCc(Address cc)
          Sets the Cc header field of this message to the specified address.
 void Message.setReplyTo(Address... replyTo)
          Sets the Reply-To header field of this message to the specified addresses.
 void Message.setReplyTo(Address replyTo)
          Sets the Reply-To header field of this message to the specified address.
 void Message.setTo(Address... to)
          Sets the To header field of this message to the specified addresses.
 void Message.setTo(Address to)
          Sets the To header field of this message to the specified address.
 

Method parameters in org.apache.james.mime4j.message with type arguments of type Address
 void Message.setBcc(java.util.Collection<Address> bcc)
          Sets the Bcc header field of this message to the specified addresses.
 void Message.setCc(java.util.Collection<Address> cc)
          Sets the Cc header field of this message to the specified addresses.
 void Message.setReplyTo(java.util.Collection<Address> replyTo)
          Sets the Reply-To header field of this message to the specified addresses.
 void Message.setTo(java.util.Collection<Address> to)
          Sets the To header field of this message to the specified addresses.
 



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