Class Overview
This class stores an RFC 822-like name, address, and comment,
and provides methods to convert them to quoted strings.
Summary
Public Constructors |
|
Rfc822Token(String name, String address, String comment)
Creates a new Rfc822Token with the specified name, address,
and comment.
|
Public Methods |
String
|
getAddress()
Returns the address part.
|
String
|
getComment()
Returns the comment part.
|
String
|
getName()
Returns the name part.
|
static
String
|
quoteComment(String comment)
Returns the comment, with internal backslashes and parentheses
preceded by backslashes.
|
static
String
|
quoteName(String name)
Returns the name, with internal backslashes and quotation marks
preceded by backslashes.
|
static
String
|
quoteNameIfNecessary(String name)
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.
|
void
|
setAddress(String address)
Changes the address to the specified address.
|
void
|
setComment(String comment)
Changes the comment to the specified comment.
|
void
|
setName(String name)
Changes the name to the specified name.
|
String
|
toString()
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
Object
|
clone()
Creates and returns a copy of this Object .
|
boolean
|
equals(Object o)
Compares this instance with the specified object and indicates if they
are equal.
|
void
|
finalize()
Is called before the object's memory is being reclaimed by the VM.
|
final
Class<? extends Object>
|
getClass()
Returns the unique instance of Class which represents this
object's class.
|
int
|
hashCode()
Returns an integer hash code for this object.
|
final
void
|
notify()
Causes a thread which is waiting on this object's monitor (by means of
calling one of the wait() methods) to be woken up.
|
final
void
|
notifyAll()
Causes all threads which are waiting on this object's monitor (by means
of calling one of the wait() methods) to be woken up.
|
String
|
toString()
Returns a string containing a concise, human-readable description of this
object.
|
final
void
|
wait(long millis, int nanos)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
final
void
|
wait(long millis)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
final
void
|
wait()
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object.
|
|
Public Constructors
public
Rfc822Token
(String name, String address, String comment)
Creates a new Rfc822Token with the specified name, address,
and comment.
Public Methods
public
String
getAddress
()
Returns the address part.
public
String
getComment
()
Returns the comment part.
public
static
String
quoteComment
(String comment)
Returns the comment, with internal backslashes and parentheses
preceded by backslashes. The outer parentheses themselves are
not added by this method.
public
static
String
quoteName
(String name)
Returns the name, with internal backslashes and quotation marks
preceded by backslashes. The outer quote marks themselves are not
added by this method.
public
static
String
quoteNameIfNecessary
(String name)
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.
public
void
setAddress
(String address)
Changes the address to the specified address.
public
void
setComment
(String comment)
Changes the comment to the specified comment.
public
void
setName
(String name)
Changes the name to the specified name.
public
String
toString
()
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.
Returns
- a printable representation of this object.