Package com.rometools.modules.itunes
Interface ITunes
-
- All Superinterfaces:
Cloneable,CopyFrom,Module,Serializable
- All Known Subinterfaces:
EntryInformation,FeedInformation
- All Known Implementing Classes:
AbstractITunesObject,EntryInformationImpl,FeedInformationImpl
public interface ITunes extends Module
This interface contains the methods common to all iTunes module points.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAuthor()Returns the author string for this feed or entrybooleangetBlock()Boolean as to whether to block this feed or entrybooleangetExplicit()Boolean as to whether this feed or entry contains adult contentBooleangetExplicitNullable()URLgetImage()String[]getKeywords()A list of keywords for this feed or entry Must not contain spacesStringgetSubtitle()A subtitle for this feed or entryStringgetSummary()A subtitle for this feed or entryvoidsetAuthor(String author)Sets the author string for this feed or entryvoidsetBlock(boolean block)Boolean as to whether to block this feed or entryvoidsetExplicit(boolean explicit)Boolean as to whether this feed or entry contains adult contentvoidsetExplicitNullable(Boolean explicit)voidsetImage(URL image)voidsetKeywords(String[] keywords)A list of keywords for this feed or entry Must not contain spacesvoidsetSubtitle(String subtitle)A subtitle for this feed or entryvoidsetSummary(String summary)A subtitle for this feed or entry-
Methods inherited from interface com.rometools.rome.feed.CopyFrom
copyFrom, getInterface
-
-
-
-
Field Detail
-
URI
static final String URI
- See Also:
- Constant Field Values
-
-
Method Detail
-
getAuthor
String getAuthor()
Returns the author string for this feed or entry- Returns:
- Returns the author string for this feed or entry
-
setAuthor
void setAuthor(String author)
Sets the author string for this feed or entry- Parameters:
author- Sets the author string for this feed or entry
-
getBlock
boolean getBlock()
Boolean as to whether to block this feed or entry- Returns:
- Boolean as to whether to block this feed or entry
-
setBlock
void setBlock(boolean block)
Boolean as to whether to block this feed or entry- Parameters:
block- Boolean as to whether to block this feed or entry
-
getExplicit
boolean getExplicit()
Boolean as to whether this feed or entry contains adult content- Returns:
- Boolean as to whether this feed or entry contains adult content
-
getExplicitNullable
Boolean getExplicitNullable()
-
setExplicit
void setExplicit(boolean explicit)
Boolean as to whether this feed or entry contains adult content- Parameters:
explicit- Boolean as to whether this feed or entry contains adult content
-
setExplicitNullable
void setExplicitNullable(Boolean explicit)
-
getImage
URL getImage()
-
setImage
void setImage(URL image)
-
getKeywords
String[] getKeywords()
A list of keywords for this feed or entry Must not contain spaces- Returns:
- A list of keywords for this feed or entry
-
setKeywords
void setKeywords(String[] keywords)
A list of keywords for this feed or entry Must not contain spaces- Parameters:
keywords- A list of keywords for this feed or enty
-
getSubtitle
String getSubtitle()
A subtitle for this feed or entry- Returns:
- A subtitle for this feed or entry
-
setSubtitle
void setSubtitle(String subtitle)
A subtitle for this feed or entry- Parameters:
subtitle- A subtitle for this feed or entry
-
getSummary
String getSummary()
A subtitle for this feed or entry- Returns:
- A subtitle for this feed or entry
-
setSummary
void setSummary(String summary)
A subtitle for this feed or entry- Parameters:
summary- A subtitle for this feed or entry
-
-