com.sun.syndication.feed.synd
public class SyndPersonImpl extends Object implements Serializable, SyndPerson
Field Summary | |
---|---|
String | _email |
String | _name |
ObjectBean | _objBean |
String | _uri |
Constructor Summary | |
---|---|
SyndPersonImpl()
For implementations extending SyndContentImpl to be able to use the ObjectBean functionality
with extended interfaces. |
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's e-mail address.
|
String | getName()
Returns the person name.
|
String | getUri()
Returns the person's URI.
|
int | hashCode()
Returns a hashcode value for the object.
|
void | setEmail(String email)
Sets the person's e-mail address.
|
void | setName(String name)
Sets the category name.
|
void | setUri(String uri)
Sets the person's URI.
|
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's e-mail address, null if none.
Returns: the person name, null if none.
Returns: the person's URI, null if none.
It follows the contract defined by the Object hashCode() method.
Returns: the hashcode of the bean object.
Parameters: email The person's e-mail address to set, null if none.
Parameters: name the category name to set, null if none.
Parameters: uri the peron's URI to set, null if none.
Returns: String representation for the object.