com.sun.syndication.feed.atom
public class Person extends Object implements Cloneable, Serializable
| Field Summary | |
|---|---|
| String | _email |
| String | _name |
| ObjectBean | _objBean |
| String | _uri |
| Constructor Summary | |
|---|---|
| Person()
Default constructor. | |
| Method Summary | |
|---|---|
| Object | clone()
Creates a deep 'bean' clone of the object.
|
| boolean | equals(Object other)
Indicates whether some other object is "equal to" this one as defined by the Object equals() method.
|
| String | getEmail()
Returns the person email.
|
| String | getName()
Returns the person name.
|
| String | getUri()
Returns the uri
|
| String | getUrl()
Returns the person URL (same as getUri())
|
| int | hashCode()
Returns a hashcode value for the object.
|
| void | setEmail(String email)
Sets the person email.
|
| void | setName(String name)
Sets the personname.
|
| void | setUri(String uri)
Set the uri
|
| void | setUrl(String url)
Sets the person URL (same as setUri())
|
| String | toString()
Returns the String representation for the object.
|
Returns: a clone of the object.
Throws: CloneNotSupportedException thrown if an element of the object cannot be cloned.
Parameters: other he reference object with which to compare.
Returns: true if 'this' object is equal to the 'other' object.
Returns: the person email, null if none.
Returns: the person name, null if none.
Returns: Returns the uri.
Since: Atom 1.0
getUri())
Returns: the person URL, null if none.
It follows the contract defined by the Object hashCode() method.
Returns: the hashcode of the bean object.
Parameters: email the person email, null if none.
Parameters: name the person name, null if none.
Parameters: uri The uri to set.
Since: Atom 1.0
setUri())
Parameters: url the person URL, null if none.
Returns: String representation for the object.