java.lang.Object | |
↳ | android.text.util.Rfc822Token |
This class stores an RFC 822-like name, address, and comment, and provides methods to convert them to quoted strings.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Creates a new Rfc822Token with the specified name, address,
and comment.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns the address part.
| |||||||||||
Returns the comment part.
| |||||||||||
Returns the name part.
| |||||||||||
Returns the comment, with internal backslashes and parentheses
preceded by backslashes.
| |||||||||||
Returns the name, with internal backslashes and quotation marks
preceded by backslashes.
| |||||||||||
Returns the name, conservatively quoting it if there are any
characters that are likely to cause trouble outside of a
quoted string, or returning it literally if it seems safe.
| |||||||||||
Changes the address to the specified address.
| |||||||||||
Changes the comment to the specified comment.
| |||||||||||
Changes the name to the specified name.
| |||||||||||
Returns the name (with quoting added if necessary),
the comment (in parentheses), and the address (in angle brackets).
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class java.lang.Object
|
Creates a new Rfc822Token with the specified name, address, and comment.
Returns the address part.
Returns the comment part.
Returns the name part.
Returns the comment, with internal backslashes and parentheses preceded by backslashes. The outer parentheses themselves are not added by this method.
Returns the name, with internal backslashes and quotation marks preceded by backslashes. The outer quote marks themselves are not added by this method.
Returns the name, conservatively quoting it if there are any characters that are likely to cause trouble outside of a quoted string, or returning it literally if it seems safe.
Changes the address to the specified address.
Changes the comment to the specified comment.
Changes the name to the specified name.
Returns the name (with quoting added if necessary), the comment (in parentheses), and the address (in angle brackets). This should be suitable for inclusion in an RFC 822 address list.