Package com.rometools.modules.itunes
Interface EntryInformation
-
- All Superinterfaces:
Cloneable,CopyFrom,ITunes,Module,Serializable
- All Known Implementing Classes:
EntryInformationImpl
public interface EntryInformation extends ITunes
This class contains information for iTunes podcast feeds that exist at the Item level.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetClosedCaptioned()DurationgetDuration()Returns the Duration object for this ItemIntegergetEpisode()StringgetEpisodeType()Get the episode typeIntegergetOrder()IntegergetSeason()StringgetTitle()voidsetClosedCaptioned(boolean closedCaptioned)voidsetDuration(Duration duration)Sets the Duration object for this ItemvoidsetEpisode(Integer episode)voidsetEpisodeType(String episodeType)Set the episode type to one of full (default), trailer or bonus.voidsetOrder(Integer order)voidsetSeason(Integer season)voidsetTitle(String title)-
Methods inherited from interface com.rometools.rome.feed.CopyFrom
copyFrom, getInterface
-
Methods inherited from interface com.rometools.modules.itunes.ITunes
getAuthor, getBlock, getExplicit, getExplicitNullable, getImage, getKeywords, getSubtitle, getSummary, setAuthor, setBlock, setExplicit, setExplicitNullable, setImage, setKeywords, setSubtitle, setSummary
-
-
-
-
Method Detail
-
getDuration
Duration getDuration()
Returns the Duration object for this Item- Returns:
- Returns the Duration object for this Item
-
setDuration
void setDuration(Duration duration)
Sets the Duration object for this Item- Parameters:
duration- Sets the Duration object for this Item
-
getClosedCaptioned
boolean getClosedCaptioned()
-
setClosedCaptioned
void setClosedCaptioned(boolean closedCaptioned)
-
getOrder
Integer getOrder()
-
setOrder
void setOrder(Integer order)
-
getEpisodeType
String getEpisodeType()
Get the episode type- See Also:
setEpisodeType(episodeType) for details
-
setEpisodeType
void setEpisodeType(String episodeType)
Set the episode type to one of full (default), trailer or bonus. See the new spec by Apple for details.- Parameters:
episodeType-
-
getSeason
Integer getSeason()
-
setSeason
void setSeason(Integer season)
-
getEpisode
Integer getEpisode()
-
setEpisode
void setEpisode(Integer episode)
-
getTitle
String getTitle()
-
setTitle
void setTitle(String title)
-
-