com.sun.syndication.feed.synd
public interface SyndLink
Method Summary | |
---|---|
abstract Object | clone()
Creates a deep 'bean' clone of the object.
|
abstract boolean | equals(Object other)
Indicates whether some other object is "equal to" this one as defined by the Object equals() method.
|
abstract String | getHref()
Returns the link href.
|
abstract String | getHreflang()
Returns the hreflang
|
abstract long | getLength()
Returns the length
|
abstract String | getRel()
Returns the link rel.
|
abstract String | getTitle()
Returns the link title.
|
abstract String | getType()
Returns the link type.
|
abstract int | hashCode()
Returns a hashcode value for the object.
|
abstract void | setHref(String href)
Sets the link href.
|
abstract void | setHreflang(String hreflang)
Set the hreflang
|
abstract void | setLength(long length)
Set the length
|
abstract void | setRel(String rel)
Sets the link rel.
|
abstract void | setTitle(String title)
Sets the link title.
|
abstract void | setType(String type)
Sets the link type.
|
abstract 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 link href, null if none.
Returns: Returns the hreflang.
Returns: Returns the length.
Returns: the link rel, null if none.
Returns: the link title, null if none.
Returns: the link type, null if none.
It follows the contract defined by the Object hashCode() method.
Returns: the hashcode of the bean object.
Parameters: href the link href, null if none.
Parameters: hreflang The hreflang to set.
Parameters: length The length to set.
Parameters: rel the link rel,, null if none.
Parameters: title the link title, null if none.
Parameters: type the link type, null if none.
Returns: String representation for the object.