|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Address | |
---|---|
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 | |
---|---|
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.dom with type arguments of type Address | |
---|---|
void |
Message.setBcc(java.util.Collection<? extends Address> bcc)
Sets the Bcc header field of this message to the specified addresses. |
void |
Message.setCc(java.util.Collection<? extends Address> cc)
Sets the Cc header field of this message to the specified addresses. |
void |
Message.setReplyTo(java.util.Collection<? extends Address> replyTo)
Sets the Reply-To header field of this message to the specified addresses. |
void |
Message.setTo(java.util.Collection<? extends Address> to)
Sets the 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 | |
---|---|
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 | |
---|---|
Address |
AddressList.get(int index)
Gets an address. |
Constructor parameters in org.apache.james.mime4j.dom.address with type arguments of type Address | |
---|---|
AddressList(java.util.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 | |
---|---|
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<? extends 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 |
---|
Methods in org.apache.james.mime4j.field.address that return Address | |
---|---|
Address |
LenientAddressBuilder.parseAddress(ByteSequence buf,
ParserCursor cursor,
java.util.BitSet delimiters)
|
Address |
LenientAddressBuilder.parseAddress(java.lang.String text)
|
Address |
AddressBuilder.parseAddress(java.lang.String rawAddressString)
|
Address |
AddressBuilder.parseAddress(java.lang.String rawAddressString,
DecodeMonitor monitor)
Parses the specified raw string into an address. |
Methods in org.apache.james.mime4j.field.address with parameters of type Address | |
---|---|
void |
AddressFormatter.encode(java.lang.StringBuilder sb,
Address address)
Returns a string representation of this address that can be used for transport purposes. |
void |
AddressFormatter.format(java.lang.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 | |
---|---|
void |
AbstractMessage.setBcc(Address... bcc)
Sets the Bcc header field of this message to the specified addresses. |
void |
AbstractMessage.setBcc(Address bcc)
Sets the Bcc header field of this message to the specified address. |
void |
AbstractMessage.setCc(Address... cc)
Sets the Cc header field of this message to the specified addresses. |
void |
AbstractMessage.setCc(Address cc)
Sets the Cc header field of this message to the specified address. |
void |
AbstractMessage.setReplyTo(Address... replyTo)
Sets the Reply-To header field of this message to the specified addresses. |
void |
AbstractMessage.setReplyTo(Address replyTo)
Sets the Reply-To header field of this message to the specified address. |
void |
AbstractMessage.setTo(Address... to)
Sets the To header field of this message to the specified addresses. |
void |
AbstractMessage.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 | |
---|---|
protected abstract AddressListField |
AbstractMessage.newAddressList(java.lang.String fieldName,
java.util.Collection<? extends Address> addresses)
|
protected AddressListField |
MessageImpl.newAddressList(java.lang.String fieldName,
java.util.Collection<? extends Address> addresses)
|
void |
AbstractMessage.setBcc(java.util.Collection<? extends Address> bcc)
Sets the Bcc header field of this message to the specified addresses. |
void |
AbstractMessage.setCc(java.util.Collection<? extends Address> cc)
Sets the Cc header field of this message to the specified addresses. |
void |
AbstractMessage.setReplyTo(java.util.Collection<? extends Address> replyTo)
Sets the Reply-To header field of this message to the specified addresses. |
void |
AbstractMessage.setTo(java.util.Collection<? extends Address> to)
Sets the To header field of this message to the specified addresses. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |