com.sun.syndication.feed.rss
public class Category extends Object implements Cloneable, Serializable
| Field Summary | |
|---|---|
| String | _domain |
| ObjectBean | _objBean |
| String | _value |
| Constructor Summary | |
|---|---|
| Category()
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 | getDomain()
Returns the category domain.
|
| String | getValue()
Returns the category value.
|
| int | hashCode()
Returns a hashcode value for the object.
|
| void | setDomain(String domain)
Sets the category domain.
|
| void | setValue(String value)
Sets the category value.
|
| 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 category domain, null if none.
Returns: the category value, null if none.
It follows the contract defined by the Object hashCode() method.
Returns: the hashcode of the bean object.
Parameters: domain the category domain to set, null if none.
Parameters: value the category value to set, null if none.
Returns: String representation for the object.