net.rim.blackberry.api.mail
Interface Message.RecipientType
- Enclosing class:
- Message
public static interface Message.RecipientType
Defines the types of recipients supported by the Message class.
The currently defined types are TO, CC and BCC. Note that this class
only has a protected constructor, which restricts new Recipient types to
this class or subclasses. This effectively implements an enumeration of
the allowed Recipient types. The following code sample shows how to use
this class to obtain the "TO" recipients from a message.
Message msg = folder.getMessages(1);
Address[] a = m.getRecipients(Message.RecipientType.TO);
- Category:
- Signed: This element is only accessible by signed applications. If you intend to use this element, please visit http://www.blackberry.com/go/codesigning to obtain a set of code signing keys. Code signing is only required for applications running on BlackBerry smartphones; development on BlackBerry Smartphone Simulators can occur without code signing.
- Since:
- BlackBerry API 3.6.0
|
Field Summary |
|
static int |
BCC
"Bcc" (blind carbon copy) recipients |
|
static int |
CC
"Cc" (carbon copy) recipients |
|
static int |
FROM
"From" address. |
|
static int |
REPLY_TO
"Reply-to" address. |
|
static int |
SENDER
"Sender" address. |
|
static int |
TO
"To" (primary) recipients |
TO
static final int TO
- "To" (primary) recipients
- See Also:
- Constant Field Values
- Category:
- Signed: This element is only accessible by signed applications. If you intend to use this element, please visit http://www.blackberry.com/go/codesigning to obtain a set of code signing keys. Code signing is only required for applications running on BlackBerry smartphones; development on BlackBerry Smartphone Simulators can occur without code signing.
- Since:
- BlackBerry API 3.6.0
CC
static final int CC
- "Cc" (carbon copy) recipients
- See Also:
- Constant Field Values
- Category:
- Signed: This element is only accessible by signed applications. If you intend to use this element, please visit http://www.blackberry.com/go/codesigning to obtain a set of code signing keys. Code signing is only required for applications running on BlackBerry smartphones; development on BlackBerry Smartphone Simulators can occur without code signing.
- Since:
- BlackBerry API 3.6.0
BCC
static final int BCC
- "Bcc" (blind carbon copy) recipients
- See Also:
- Constant Field Values
- Category:
- Signed: This element is only accessible by signed applications. If you intend to use this element, please visit http://www.blackberry.com/go/codesigning to obtain a set of code signing keys. Code signing is only required for applications running on BlackBerry smartphones; development on BlackBerry Smartphone Simulators can occur without code signing.
- Since:
- BlackBerry API 3.6.0
REPLY_TO
static final int REPLY_TO
- "Reply-to" address.
- See Also:
- Constant Field Values
- Category:
- Signed: This element is only accessible by signed applications. If you intend to use this element, please visit http://www.blackberry.com/go/codesigning to obtain a set of code signing keys. Code signing is only required for applications running on BlackBerry smartphones; development on BlackBerry Smartphone Simulators can occur without code signing.
- Since:
- BlackBerry API 3.6.0
SENDER
static final int SENDER
- "Sender" address.
- See Also:
- Constant Field Values
- Category:
- Signed: This element is only accessible by signed applications. If you intend to use this element, please visit http://www.blackberry.com/go/codesigning to obtain a set of code signing keys. Code signing is only required for applications running on BlackBerry smartphones; development on BlackBerry Smartphone Simulators can occur without code signing.
- Since:
- BlackBerry API 3.6.0
FROM
static final int FROM
- "From" address.
- See Also:
- Constant Field Values
- Category:
- Signed: This element is only accessible by signed applications. If you intend to use this element, please visit http://www.blackberry.com/go/codesigning to obtain a set of code signing keys. Code signing is only required for applications running on BlackBerry smartphones; development on BlackBerry Smartphone Simulators can occur without code signing.
- Since:
- BlackBerry API 3.6.0
Copyright 1999-2011 Research In Motion Limited. 295 Phillip Street, Waterloo, Ontario, Canada, N2L 3W8. All Rights Reserved.
Java is a trademark of Oracle America Inc. in the US and other countries.
Legal