Uses of Class
org.apache.james.mime4j.dom.address.Mailbox
-
-
Uses of Mailbox in org.apache.james.mime4j.dom
Methods in org.apache.james.mime4j.dom that return Mailbox Modifier and Type Method Description Mailbox
Message.Builder. getSender()
Returns the value of the Sender header field of this message asMailbox
object ornull
if it is not present.Mailbox
Message. getSender()
Returns the value of the Sender header field of this message asMailbox
object ornull
if it is not present.Methods in org.apache.james.mime4j.dom with parameters of type Mailbox Modifier and Type Method Description Message.Builder
Message.Builder. setFrom(Mailbox from)
Sets From header field of this message to the specified mailbox address.Message.Builder
Message.Builder. setFrom(Mailbox... from)
Sets From header field of this message to the specified mailbox addresses.Message.Builder
Message.Builder. setSender(Mailbox sender)
Sets 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 Modifier and Type Method Description Message.Builder
Message.Builder. setFrom(Collection<Mailbox> from)
Sets 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 Modifier and Type Method Description Mailbox
MailboxList. get(int index)
Gets an address.Method parameters in org.apache.james.mime4j.dom.address with type arguments of type Mailbox Modifier and Type Method Description protected abstract void
Address. doAddMailboxesTo(List<Mailbox> results)
Adds any mailboxes represented by this address into the given List.protected void
Group. doAddMailboxesTo(List<Mailbox> results)
protected void
Mailbox. doAddMailboxesTo(List<Mailbox> results)
Constructors in org.apache.james.mime4j.dom.address with parameters of type Mailbox Constructor Description Group(String name, Mailbox... mailboxes)
MailboxList(Mailbox... mailboxes)
Constructor parameters in org.apache.james.mime4j.dom.address with type arguments of type Mailbox Constructor Description Group(String name, Collection<Mailbox> mailboxes)
MailboxList(List<Mailbox> mailboxes)
MailboxList(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 Modifier and Type Method Description Mailbox
MailboxField. getMailbox()
-
Uses of Mailbox in org.apache.james.mime4j.field
Methods in org.apache.james.mime4j.field that return Mailbox Modifier and Type Method Description Mailbox
MailboxFieldImpl. getMailbox()
Mailbox
MailboxFieldLenientImpl. getMailbox()
Methods in org.apache.james.mime4j.field with parameters of type Mailbox Modifier and Type Method Description static MailboxListField
Fields. from(Mailbox mailbox)
Creates a From field for the specified mailbox address.static MailboxListField
Fields. from(Mailbox... mailboxes)
Creates a From field for the specified mailbox addresses.static MailboxField
Fields. mailbox(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 Modifier and Type Method Description static MailboxListField
Fields. from(Iterable<Mailbox> mailboxes)
Creates a From field for the specified mailbox addresses.static MailboxListField
Fields. mailboxList(String fieldName, 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 Modifier and Type Method Description Mailbox
AddressParser. parseMailbox(CharSequence text)
Parses the specified raw string into a mailbox address.Mailbox
DefaultAddressParser. parseMailbox(CharSequence text)
Mailbox
DefaultAddressParser. parseMailbox(CharSequence text, DecodeMonitor monitor)
Parses the specified raw string into a mailbox address.Mailbox
LenientAddressParser. parseMailbox(CharSequence text)
Mailbox
LenientAddressParser. parseMailbox(ByteSequence buf, ParserCursor cursor, BitSet delimiters)
Methods in org.apache.james.mime4j.field.address with parameters of type Mailbox Modifier and Type Method Description void
AddressFormatter. encode(StringBuilder sb, Mailbox mailbox)
String
AddressFormatter. encode(Mailbox mailbox)
void
AddressFormatter. format(StringBuilder sb, Mailbox mailbox, boolean includeRoute)
String
AddressFormatter. format(Mailbox mailbox, boolean includeRoute)
-
Uses of Mailbox in org.apache.james.mime4j.message
Methods in org.apache.james.mime4j.message that return Mailbox Modifier and Type Method Description Mailbox
AbstractMessage. getSender()
Returns the value of the Sender header field of this message asMailbox
object ornull
if it is not present.Mailbox
MessageBuilder. getSender()
Deprecated.Methods in org.apache.james.mime4j.message with parameters of type Mailbox Modifier and Type Method Description MessageBuilder
MessageBuilder. setFrom(Mailbox from)
Deprecated.MessageBuilder
MessageBuilder. setFrom(Mailbox... from)
Deprecated.MessageBuilder
MessageBuilder. setSender(Mailbox sender)
Deprecated.Method parameters in org.apache.james.mime4j.message with type arguments of type Mailbox Modifier and Type Method Description MessageBuilder
MessageBuilder. setFrom(Collection<Mailbox> from)
Deprecated.
-