Uses of Class
org.apache.james.mime4j.dom.address.Mailbox

Packages that use Mailbox
org.apache.james.mime4j.dom   
org.apache.james.mime4j.dom.address   
org.apache.james.mime4j.dom.field   
org.apache.james.mime4j.field   
org.apache.james.mime4j.field.address   
org.apache.james.mime4j.message   
 

Uses of Mailbox in org.apache.james.mime4j.dom
 

Methods in org.apache.james.mime4j.dom that return Mailbox
 Mailbox Message.getSender()
          Returns the value of the Sender header field of this message as Mailbox object or null if it is not present.
 

Methods in org.apache.james.mime4j.dom with parameters of type Mailbox
 void Message.setFrom(Mailbox... from)
          Sets the From header field of this message to the specified mailbox addresses.
 void Message.setFrom(Mailbox from)
          Sets the From header field of this message to the specified mailbox address.
 void Message.setSender(Mailbox sender)
          Sets the Sender header field of this message to the specified mailbox address.
 

Method parameters in org.apache.james.mime4j.dom with type arguments of type Mailbox
 void Message.setFrom(java.util.Collection<Mailbox> from)
          Sets the From header field of this message to the specified mailbox addresses.
 

Uses of Mailbox in org.apache.james.mime4j.dom.address
 

Methods in org.apache.james.mime4j.dom.address that return Mailbox
 Mailbox MailboxList.get(int index)
          Gets an address.
 

Method parameters in org.apache.james.mime4j.dom.address with type arguments of type Mailbox
protected  void Mailbox.doAddMailboxesTo(java.util.List<Mailbox> results)
           
protected abstract  void Address.doAddMailboxesTo(java.util.List<Mailbox> results)
          Adds any mailboxes represented by this address into the given List.
protected  void Group.doAddMailboxesTo(java.util.List<Mailbox> results)
           
 

Constructors in org.apache.james.mime4j.dom.address with parameters of type Mailbox
Group(java.lang.String name, Mailbox... mailboxes)
           
 

Constructor parameters in org.apache.james.mime4j.dom.address with type arguments of type Mailbox
Group(java.lang.String name, java.util.Collection<Mailbox> mailboxes)
           
MailboxList(java.util.List<Mailbox> mailboxes, boolean dontCopy)
           
 

Uses of Mailbox in org.apache.james.mime4j.dom.field
 

Methods in org.apache.james.mime4j.dom.field that return Mailbox
 Mailbox MailboxField.getMailbox()
           
 

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

Methods in org.apache.james.mime4j.field that return Mailbox
 Mailbox MailboxFieldImpl.getMailbox()
           
 Mailbox MailboxFieldLenientImpl.getMailbox()
           
 

Methods in org.apache.james.mime4j.field with parameters of type Mailbox
static MailboxListField Fields.from(Mailbox... mailboxes)
          Creates a From field for the specified mailbox addresses.
static MailboxListField Fields.from(Mailbox mailbox)
          Creates a From field for the specified mailbox address.
static MailboxField Fields.mailbox(java.lang.String fieldName, Mailbox mailbox)
          Creates a mailbox field from the specified field name and mailbox address.
static MailboxField Fields.sender(Mailbox mailbox)
          Creates a Sender field for the specified mailbox address.
 

Method parameters in org.apache.james.mime4j.field with type arguments of type Mailbox
static MailboxListField Fields.from(java.lang.Iterable<Mailbox> mailboxes)
          Creates a From field for the specified mailbox addresses.
static MailboxListField Fields.mailboxList(java.lang.String fieldName, java.lang.Iterable<Mailbox> mailboxes)
          Creates a mailbox-list field from the specified field name and mailbox addresses.
 

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

Methods in org.apache.james.mime4j.field.address that return Mailbox
 Mailbox LenientAddressBuilder.parseMailbox(ByteSequence buf, ParserCursor cursor, java.util.BitSet delimiters)
           
 Mailbox LenientAddressBuilder.parseMailbox(java.lang.String text)
           
 Mailbox AddressBuilder.parseMailbox(java.lang.String rawMailboxString)
           
 Mailbox AddressBuilder.parseMailbox(java.lang.String rawMailboxString, DecodeMonitor monitor)
          Parses the specified raw string into a mailbox address.
 

Methods in org.apache.james.mime4j.field.address with parameters of type Mailbox
 java.lang.String AddressFormatter.encode(Mailbox mailbox)
           
 void AddressFormatter.encode(java.lang.StringBuilder sb, Mailbox mailbox)
           
 java.lang.String AddressFormatter.format(Mailbox mailbox, boolean includeRoute)
           
 void AddressFormatter.format(java.lang.StringBuilder sb, Mailbox mailbox, boolean includeRoute)
           
 

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

Methods in org.apache.james.mime4j.message that return Mailbox
 Mailbox AbstractMessage.getSender()
          Returns the value of the Sender header field of this message as Mailbox object or null if it is not present.
 

Methods in org.apache.james.mime4j.message with parameters of type Mailbox
protected abstract  MailboxField AbstractMessage.newMailbox(java.lang.String fieldName, Mailbox mailbox)
           
protected  MailboxField MessageImpl.newMailbox(java.lang.String fieldName, Mailbox mailbox)
           
 void AbstractMessage.setFrom(Mailbox... from)
          Sets the From header field of this message to the specified mailbox addresses.
 void AbstractMessage.setFrom(Mailbox from)
          Sets the From header field of this message to the specified mailbox address.
 void AbstractMessage.setSender(Mailbox sender)
          Sets the Sender header field of this message to the specified mailbox address.
 

Method parameters in org.apache.james.mime4j.message with type arguments of type Mailbox
protected abstract  MailboxListField AbstractMessage.newMailboxList(java.lang.String fieldName, java.util.Collection<Mailbox> mailboxes)
           
protected  MailboxListField MessageImpl.newMailboxList(java.lang.String fieldName, java.util.Collection<Mailbox> mailboxes)
           
 void AbstractMessage.setFrom(java.util.Collection<Mailbox> from)
          Sets the From header field of this message to the specified mailbox addresses.
 



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