| com.sun.syndication.feed.synd.SyndEntry
All known Subclasses: com.sun.syndication.feed.synd.SyndEntryImpl,
getAuthor | String getAuthor()(Code) | | Returns the name of the first entry author in the collection of authors.
For Atom feeds, this returns the authors as a list of SyndPerson objects,
for RSS feeds this method is a convenience method, it maps to the
Dublin Core module creator.
the feed author, null if none. |
getAuthors | List getAuthors()(Code) | | Returns the entry authors.
For Atom feeds, this returns the authors as a list of SyndPerson objects,
for RSS feeds this method is a convenience method, it maps to the
Dublin Core module creator.
the feed author, null if none. |
getCategories | List getCategories()(Code) | | Returns the entry categories.
This method is a convenience method, it maps to the Dublin Core module subjects.
a list of SyndCategoryImpl elements with the entry categories,an empty list if none. |
getContents | List getContents()(Code) | | Returns the entry contents.
a list of SyndContentImpl elements with the entry contents,an empty list if none. |
getContributors | List getContributors()(Code) | | Returns the feed author.
For Atom feeds, this returns the contributors as a list of
SyndPerson objects
the feed author, null if none. |
getDescription | SyndContent getDescription()(Code) | | Returns the entry description.
the entry description, null if none. |
getEnclosures | public List getEnclosures()(Code) | | Returns the entry enclosures.
a list of SyndEnclosure elements with the entry enclosures,an empty list if none. |
getForeignMarkup | public Object getForeignMarkup()(Code) | | Returns foreign markup found at channel level.
Opaque object to discourage use |
getLink | String getLink()(Code) | | Returns the entry link.
the entry link, null if none. |
getLinks | List getLinks()(Code) | | Returns the entry links
the entry links, null if none. |
getModule | public Module getModule(String uri)(Code) | | Returns the module identified by a given URI.
Parameters: uri - the URI of the ModuleImpl. The module with the given URI, null if none. |
getModules | List getModules()(Code) | | Returns the entry modules.
a list of ModuleImpl elements with the entry modules,an empty list if none. |
getPublishedDate | Date getPublishedDate()(Code) | | Returns the entry published date.
This method is a convenience method, it maps to the Dublin Core module date.
the entry published date, null if none. |
getTitle | String getTitle()(Code) | | Returns the entry title.
the entry title, null if none. |
getTitleEx | SyndContent getTitleEx()(Code) | | Returns the entry title as a text construct.
the entry title, null if none. |
getUpdatedDate | Date getUpdatedDate()(Code) | | Returns the entry updated date.
the entry updated date, null if none. |
getUri | String getUri()(Code) | | Returns the entry URI.
How the entry URI maps to a concrete feed type (RSS or Atom) depends on
the concrete feed type. This is explained in detail in Rome documentation,
Feed and entry URI mapping.
The returned URI is a normalized URI as specified in RFC 2396bis.
the entry URI, null if none. |
setAuthor | void setAuthor(String author)(Code) | | Sets the entry author.
For Atom feeds, this sets the feed author's name, for RSS feeds
this method is a convenience method, it maps to the Dublin Core
module creator.
Parameters: author - the feed author to set, null if none. |
setAuthors | void setAuthors(List authors)(Code) | | Sets the entry author.
For Atom feeds, this sets the authors as a list of SyndPerson
objects, for RSS feeds this method is a convenience method, it maps
to the Dublin Core module creator.
Parameters: author - the feed author to set, null if none. |
setCategories | void setCategories(List categories)(Code) | | Sets the entry categories.
This method is a convenience method, it maps to the Dublin Core module subjects.
Parameters: categories - the list of SyndCategoryImpl elements with the entry categories to set,an empty list or null if none. |
setContents | void setContents(List contents)(Code) | | Sets the entry contents.
Parameters: contents - the list of SyndContentImpl elements with the entry contents to set,an empty list or null if none. |
setContributors | void setContributors(List contributors)(Code) | | Sets the feed author.
Returns contributors as a list of SyndPerson objects.
Parameters: author - the feed author to set, null if none. |
setDescription | void setDescription(SyndContent description)(Code) | | Sets the entry description.
Parameters: description - the entry description to set, null if none. |
setEnclosures | public void setEnclosures(List enclosures)(Code) | | Sets the entry enclosures.
Parameters: enclosures - the list of SyndEnclosure elements with the entry enclosures to set,an empty list or null if none. |
setForeignMarkup | public void setForeignMarkup(Object foreignMarkup)(Code) | | Sets foreign markup found at channel level.
Parameters: foreignMarkup - Opaque object to discourage use |
setLink | void setLink(String link)(Code) | | Sets the entry link.
Parameters: link - the entry link to set, null if none. |
setLinks | void setLinks(List links)(Code) | | Sets the entry links.
Parameters: links - the entry links to set, null if none. |
setModules | void setModules(List modules)(Code) | | Sets the entry modules.
Parameters: modules - the list of ModuleImpl elements with the entry modules to set,an empty list or null if none. |
setPublishedDate | void setPublishedDate(Date publishedDate)(Code) | | Sets the entry published date.
This method is a convenience method, it maps to the Dublin Core module date.
Parameters: publishedDate - the entry published date to set, null if none. |
setTitle | void setTitle(String title)(Code) | | Sets the entry title.
Parameters: title - the entry title to set, null if none. |
setTitleEx | void setTitleEx(SyndContent title)(Code) | | Sets the entry title as a text construct.
Parameters: title - the entry title to set, null if none. |
setUpdatedDate | void setUpdatedDate(Date updatedDate)(Code) | | Sets the entry updated date.
Parameters: publishedDate - the entry updated date to set, null if none. |
setUri | void setUri(String uri)(Code) | | Sets the entry URI.
How the entry URI maps to a concrete feed type (RSS or Atom) depends on
the concrete feed type. This is explained in detail in Rome documentation,
Feed and entry URI mapping.
Parameters: uri - the entry URI to set, null if none. |
|
|