public class Rfc822Token extends Object
Constructor and Description |
---|
Rfc822Token(String name,
String address,
String comment)
Creates a new Rfc822Token with the specified name, address,
and comment.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object o)
Compares this instance with the specified object and indicates if they
are equal.
|
String |
getAddress()
Returns the address part.
|
String |
getComment()
Returns the comment part.
|
String |
getName()
Returns the name part.
|
int |
hashCode()
Returns an integer hash code for this object.
|
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).
|
public String getName()
public String getAddress()
public String getComment()
public void setName(String name)
public void setAddress(String address)
public void setComment(String comment)
public String toString()
public static String quoteNameIfNecessary(String name)
public static String quoteName(String name)
public static String quoteComment(String comment)
public int hashCode()
Object
Object.equals(java.lang.Object)
returns true
must return
the same hash code value. This means that subclasses of Object
usually override both methods or neither method.
Note that hash values must not change over time unless information used in equals comparisons also changes.
See Writing a correct
hashCode
method
if you intend implementing your own hashCode
method.
hashCode
in class Object
Object.equals(java.lang.Object)
public boolean equals(Object o)
Object
o
must represent the same object
as this instance using a class-specific comparison. The general contract
is that this comparison should be reflexive, symmetric, and transitive.
Also, no object reference other than null is equal to null.
The default implementation returns true
only if this ==
o
. See Writing a correct
equals
method
if you intend implementing your own equals
method.
The general contract for the equals
and Object.hashCode()
methods is that if equals
returns true
for
any two objects, then hashCode()
must return the same value for
these objects. This means that subclasses of Object
usually
override either both methods or neither of them.
equals
in class Object
o
- the object to compare this instance with.true
if the specified object is equal to this Object
; false
otherwise.Object.hashCode()