Package com.rometools.rome.feed.module
Interface DCSubject
-
- All Known Implementing Classes:
DCSubjectImpl
public interface DCSubject extends Cloneable, CopyFrom
Subject of the Dublin Core ModuleImpl.- See Also:
- Dublin Core module.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Objectclone()Creates a deep clone of the object.StringgetTaxonomyUri()Returns the DublinCore subject taxonomy URI.StringgetValue()Returns the DublinCore subject value.voidsetTaxonomyUri(String taxonomyUri)Sets the DublinCore subject taxonomy URI.voidsetValue(String value)Sets the DublinCore subject value.-
Methods inherited from interface com.rometools.rome.feed.CopyFrom
copyFrom, getInterface
-
-
-
-
Method Detail
-
getTaxonomyUri
String getTaxonomyUri()
Returns the DublinCore subject taxonomy URI.- Returns:
- the DublinCore subject taxonomy URI, null if none.
-
setTaxonomyUri
void setTaxonomyUri(String taxonomyUri)
Sets the DublinCore subject taxonomy URI.- Parameters:
taxonomyUri- the DublinCore subject taxonomy URI to set, null if none.
-
getValue
String getValue()
Returns the DublinCore subject value.- Returns:
- the DublinCore subject value, null if none.
-
setValue
void setValue(String value)
Sets the DublinCore subject value.- Parameters:
value- the DublinCore subject value to set, null if none.
-
clone
Object clone() throws CloneNotSupportedException
Creates a deep clone of the object.- Returns:
- a clone of the object.
- Throws:
CloneNotSupportedException- thrown if an element of the object cannot be cloned.
-
-