Uses of Class
org.apache.james.mime4j.dom.address.Address
-
Packages that use Address Package Description org.apache.james.mime4j.dom org.apache.james.mime4j.dom.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.dom
Methods in org.apache.james.mime4j.dom with parameters of type Address Modifier and Type Method Description Message.Builder
Message.Builder. setBcc(Address bcc)
Sets Bcc header field of this message to the specified address.Message.Builder
Message.Builder. setBcc(Address... bcc)
Sets Bcc header field of this message to the specified addresses.Message.Builder
Message.Builder. setCc(Address cc)
Sets Cc header field of this message to the specified address.Message.Builder
Message.Builder. setCc(Address... cc)
Sets Cc header field of this message to the specified addresses.Message.Builder
Message.Builder. setReplyTo(Address replyTo)
Sets Reply-To header field of this message to the specified address.Message.Builder
Message.Builder. setReplyTo(Address... replyTo)
Sets Reply-To header field of this message to the specified addresses.Message.Builder
Message.Builder. setTo(Address to)
Sets To header field of this message to the specified address.Message.Builder
Message.Builder. setTo(Address... to)
Sets To header field of this message to the specified addresses.Method parameters in org.apache.james.mime4j.dom with type arguments of type Address Modifier and Type Method Description Message.Builder
Message.Builder. setBcc(Collection<? extends Address> bcc)
Sets Bcc header field of this message to the specified addresses.Message.Builder
Message.Builder. setCc(Collection<? extends Address> cc)
Sets Cc header field of this message to the specified addresses.Message.Builder
Message.Builder. setReplyTo(Collection<? extends Address> replyTo)
Sets Reply-To header field of this message to the specified addresses.Message.Builder
Message.Builder. setTo(Collection<? extends Address> to)
Sets To header field of this message to the specified addresses. -
Uses of Address in org.apache.james.mime4j.dom.address
Subclasses of Address in org.apache.james.mime4j.dom.address Modifier and Type Class Description class
Group
A named group of zero or more mailboxes.class
Mailbox
Represents a single e-mail address.Methods in org.apache.james.mime4j.dom.address that return Address Modifier and Type Method Description Address
AddressList. get(int index)
Gets an address.Constructors in org.apache.james.mime4j.dom.address with parameters of type Address Constructor Description AddressList(Address... addresses)
Constructor parameters in org.apache.james.mime4j.dom.address with type arguments of type Address Constructor Description AddressList(List<? extends Address> addresses)
AddressList(List<? extends Address> addresses, boolean dontCopy)
-
Uses of Address in org.apache.james.mime4j.field
Methods in org.apache.james.mime4j.field with parameters of type Address Modifier and Type Method Description static AddressListField
Fields. bcc(Address address)
Creates a Bcc field for the specified mailbox or group address.static AddressListField
Fields. bcc(Address... addresses)
Creates a Bcc 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. cc(Address... addresses)
Creates a Cc 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. replyTo(Address... addresses)
Creates a Reply-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.static AddressListField
Fields. to(Address... addresses)
Creates a To field for the specified mailbox or group addresses.Method parameters in org.apache.james.mime4j.field with type arguments of type Address Modifier and Type Method Description static AddressListField
Fields. addressList(String fieldName, Iterable<? extends Address> addresses)
Creates an address-list field from the specified field name and mailbox or group addresses.static AddressListField
Fields. bcc(Iterable<Address> addresses)
Creates a Bcc field for the specified mailbox or group addresses.static AddressListField
Fields. cc(Iterable<Address> addresses)
Creates a Cc field for the specified mailbox or group addresses.static AddressListField
Fields. replyTo(Iterable<Address> addresses)
Creates a Reply-To field for the specified mailbox or group addresses.static AddressListField
Fields. to(Iterable<Address> addresses)
Creates a To field for the specified mailbox or group addresses. -
Uses of Address in org.apache.james.mime4j.field.address
Methods in org.apache.james.mime4j.field.address that return Address Modifier and Type Method Description Address
AddressParser. parseAddress(CharSequence text)
Parses the specified raw string into an address.Address
DefaultAddressParser. parseAddress(CharSequence text)
Address
DefaultAddressParser. parseAddress(CharSequence text, DecodeMonitor monitor)
Parses the specified raw string into an address.Address
LenientAddressParser. parseAddress(CharSequence text)
Address
LenientAddressParser. parseAddress(ByteSequence buf, ParserCursor cursor, BitSet delimiters)
Methods in org.apache.james.mime4j.field.address with parameters of type Address Modifier and Type Method Description void
AddressFormatter. encode(StringBuilder sb, Address address)
Returns a string representation of this address that can be used for transport purposes.void
AddressFormatter. format(StringBuilder sb, Address address, boolean includeRoute)
Formats the address as a human readable string, not including the route. -
Uses of Address in org.apache.james.mime4j.message
Methods in org.apache.james.mime4j.message with parameters of type Address Modifier and Type Method Description MessageBuilder
MessageBuilder. setBcc(Address bcc)
Deprecated.MessageBuilder
MessageBuilder. setBcc(Address... bcc)
Deprecated.MessageBuilder
MessageBuilder. setCc(Address cc)
Deprecated.MessageBuilder
MessageBuilder. setCc(Address... cc)
Deprecated.MessageBuilder
MessageBuilder. setReplyTo(Address replyTo)
Deprecated.MessageBuilder
MessageBuilder. setReplyTo(Address... replyTo)
Deprecated.MessageBuilder
MessageBuilder. setTo(Address to)
Deprecated.MessageBuilder
MessageBuilder. setTo(Address... to)
Deprecated.Method parameters in org.apache.james.mime4j.message with type arguments of type Address Modifier and Type Method Description MessageBuilder
MessageBuilder. setBcc(Collection<? extends Address> bcc)
Deprecated.MessageBuilder
MessageBuilder. setCc(Collection<? extends Address> cc)
Deprecated.MessageBuilder
MessageBuilder. setReplyTo(Collection<? extends Address> replyTo)
Deprecated.MessageBuilder
MessageBuilder. setTo(Collection<? extends Address> to)
Deprecated.
-