Package com.rometools.rome.feed.rss
Class Image
- java.lang.Object
-
- com.rometools.rome.feed.rss.Image
-
- All Implemented Interfaces:
Serializable,Cloneable
public class Image extends Object implements Cloneable, Serializable
Bean for images of RSS feeds.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Image()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectclone()Creates a deep 'bean' clone of the object.booleanequals(Object other)Indicates whether some other object is "equal to" this one as defined by the Object equals() method.StringgetDescription()Returns the image description.IntegergetHeight()Returns the image height.StringgetLink()Returns the image link.StringgetTitle()Returns the image title.StringgetUrl()Returns the image URL.IntegergetWidth()Returns the image width.inthashCode()Returns a hashcode value for the object.voidsetDescription(String description)Sets the image description.voidsetHeight(Integer height)Sets the image height.voidsetLink(String link)Sets the image link.voidsetTitle(String title)Sets the image title.voidsetUrl(String url)Sets the image URL.voidsetWidth(Integer width)Sets the image width.StringtoString()Returns the String representation for the object.
-
-
-
Method Detail
-
clone
public Object clone() throws CloneNotSupportedException
Creates a deep 'bean' clone of the object.- Overrides:
clonein classObject- Returns:
- a clone of the object.
- Throws:
CloneNotSupportedException- thrown if an element of the object cannot be cloned.
-
equals
public boolean equals(Object other)
Indicates whether some other object is "equal to" this one as defined by the Object equals() method.
-
hashCode
public int hashCode()
Returns a hashcode value for the object.It follows the contract defined by the Object hashCode() method.
-
toString
public String toString()
Returns the String representation for the object.
-
getTitle
public String getTitle()
Returns the image title.- Returns:
- the image title, null if none.
-
setTitle
public void setTitle(String title)
Sets the image title.- Parameters:
title- the image title to set, null if none.
-
getUrl
public String getUrl()
Returns the image URL.- Returns:
- the image URL, null if none.
-
setUrl
public void setUrl(String url)
Sets the image URL.- Parameters:
url- the image URL to set, null if none.
-
getLink
public String getLink()
Returns the image link.- Returns:
- the image link, null if none.
-
setLink
public void setLink(String link)
Sets the image link.- Parameters:
link- the image link to set, null if none.
-
getWidth
public Integer getWidth()
Returns the image width.- Returns:
- the image width, null if none.
-
setWidth
public void setWidth(Integer width)
Sets the image width.- Parameters:
width- the image width to set, null if none.
-
getHeight
public Integer getHeight()
Returns the image height.- Returns:
- the image height, null if none.
-
setHeight
public void setHeight(Integer height)
Sets the image height.- Parameters:
height- the image height to set, null if none.
-
getDescription
public String getDescription()
Returns the image description.- Returns:
- the image description, null if none.
-
setDescription
public void setDescription(String description)
Sets the image description.- Parameters:
description- the image description to set, null if none.
-
-