|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ItemEntry | |
---|---|
yarfraw.core.datamodel | |
yarfraw.io | |
yarfraw.mapping.forward.impl |
Uses of ItemEntry in yarfraw.core.datamodel |
---|
Methods in yarfraw.core.datamodel that return ItemEntry | |
---|---|
ItemEntry |
ItemEntry.addAuthorOrCreator(Person... authorOrCreator)
Rss 1.0 - <dc:creator> An entity primarily responsible for making the content of the resource. |
ItemEntry |
ItemEntry.addAuthorOrCreator(String... email)
Rss 1.0 - <dc:creator> An entity primarily responsible for making the content of the resource. |
ItemEntry |
ItemEntry.addCategorySubject(CategorySubject... categorySubject)
Rss 1.0 - <dc:subject> The topic of the content of the resource. |
ItemEntry |
ItemEntry.addCategorySubject(String... categorySubjectOrTerm)
Rss 1.0 - <dc:subject> The topic of the content of the resource. |
ItemEntry |
ItemEntry.addContributor(Person... contributor)
Rss 1.0 - <dc:contributor> An entity responsible for making contributions to the content of the resource. |
ItemEntry |
ItemEntry.addContributor(String... contributor)
Rss 1.0 - <dc:contributor> An entity responsible for making contributions to the content of the resource. |
ItemEntry |
ItemEntry.addLink(Link... link)
Rss 1.0 - The item's URL. |
ItemEntry |
ItemEntry.addLink(String... href)
Rss 1.0 - The item's URL. |
ItemEntry |
ItemEntry.addOtherAttributes(QName namespace,
String attribute)
Add an attribute that is not in the RSS 2.0 specs. |
ItemEntry |
ItemEntry.addOtherElement(Element element)
Add an element that is not specified in the Rss specs. **Note** The element should not have an empty namespace to avoid collision with the specs elements. |
ItemEntry |
ItemEntry.addOtherElement(String xmlString)
Add an element that is not specified in the Rss specs. **Note** The element should not have an empty namespace to avoid collision with the specs elements. |
ItemEntry |
ItemEntry.setAbout(String about)
Rss 1.0 only |
ItemEntry |
ItemEntry.setAuthorOrCreator(List<Person> authorOrCreator)
Rss 1.0 - <dc:creator> An entity primarily responsible for making the content of the resource. |
ItemEntry |
ItemEntry.setBase(String base)
Atom 1.0 only Any element defined by this specification MAY have an xml:base attribute [W3C.REC-xmlbase-20010627]. |
ItemEntry |
ItemEntry.setCategorySubjects(Set<CategorySubject> categorySubjects)
Rss 1.0 - <dc:subject> The topic of the content of the resource. |
ItemEntry |
ItemEntry.setComments(String comments)
Rss 1.0 - Not supported, this field is ignored. |
ItemEntry |
ItemEntry.setContent(Content content)
Rss 2.0 - This is not officially supported, but if there's a <content:encoded /> element under <Item>, the content of the encoded element will be mapped to this class. |
ItemEntry |
ItemEntry.setContent(String contentText)
Rss 2.0 - This is not officially supported, but if there's a <content:encoded /> element under <Item>, the content of the encoded element will be mapped to this class. |
ItemEntry |
ItemEntry.setContributors(List<Person> contributors)
Rss 1.0 - <dc:contributor> An entity responsible for making contributions to the content of the resource. |
ItemEntry |
ItemEntry.setDescriptionOrSummary(String descriptionOrSummary)
Rss 1.0 - A brief description/abstract of the item. |
ItemEntry |
ItemEntry.setDescriptionOrSummary(Text descriptionOrSummary)
Rss 1.0 - A brief description/abstract of the item. |
ItemEntry |
ItemEntry.setEnclosure(Enclosure enclosure)
Rss 1.0 - Not supported, this field is ignored. |
ItemEntry |
ItemEntry.setLang(Locale lang)
Rss 2.0 - <language> element. |
ItemEntry |
ItemEntry.setLang(String lang)
Rss 2.0 - <language> element. |
ItemEntry |
ItemEntry.setLinks(List<Link> links)
Rss 1.0 - The item's URL. |
ItemEntry |
ItemEntry.setOtherAttributes(Map<QName,String> otherAttributes)
Any other attribute that is not in the RSS 2.0 specs. |
ItemEntry |
ItemEntry.setOtherElements(List<Element> otherElements)
Other additional elements that are not in the Rss specs. **Note** The element should not have an empty namespace to avoid collision with the specs elements. |
ItemEntry |
ItemEntry.setPubDate(Date pubDate,
SimpleDateFormat format)
Rss 1.0 - <dc:date> A date associated with an event in the life cycle of the resource. |
ItemEntry |
ItemEntry.setPubDate(String pubDate)
Rss 1.0 - <dc:date> A date associated with an event in the life cycle of the resource. |
ItemEntry |
ItemEntry.setResource(String resource)
Rss 1.0 only |
ItemEntry |
ItemEntry.setRights(String rights)
Rss 1.0 - <dc:rights> Information about rights held in and over the resource. |
ItemEntry |
ItemEntry.setRights(Text rights)
Rss 1.0 - <dc:rights> Information about rights held in and over the resource. |
ItemEntry |
ItemEntry.setSource(Source source)
Rss 1.0 - Not supported, this field is ignored. |
ItemEntry |
ItemEntry.setTitle(String title)
Rss 1.0 - The item's title. |
ItemEntry |
ItemEntry.setTitle(Text title)
Rss 1.0 - The item's title. |
ItemEntry |
ItemEntry.setUid(Id uid)
Rss 1.0 - Not supported, this field is ignored. |
ItemEntry |
ItemEntry.setUid(String uid)
Rss 1.0 - Not supported, this field is ignored. |
ItemEntry |
ItemEntry.setUpdatedDate(Date date,
SimpleDateFormat format)
Rss 1.0 - Not supported, this field is ignored. |
ItemEntry |
ItemEntry.setUpdatedDate(String updatedDate)
Rss 1.0 - Not supported, this field is ignored. |
Methods in yarfraw.core.datamodel that return types with arguments of type ItemEntry | |
---|---|
List<ItemEntry> |
ChannelFeed.getItems()
Rss 1.0 - <item> While commonly a news headline, with RSS 1.0's modular extensibility, this can be just about anything: discussion posting, job listing, software patch -- any object with a URI. |
Methods in yarfraw.core.datamodel with parameters of type ItemEntry | |
---|---|
ChannelFeed |
ChannelFeed.addItem(ItemEntry... items)
Rss 1.0 - <item> While commonly a news headline, with RSS 1.0's modular extensibility, this can be just about anything: discussion posting, job listing, software patch -- any object with a URI. |
Method parameters in yarfraw.core.datamodel with type arguments of type ItemEntry | |
---|---|
ChannelFeed |
ChannelFeed.setItems(List<ItemEntry> items)
Rss 1.0 - <item> While commonly a news headline, with RSS 1.0's modular extensibility, this can be just about anything: discussion posting, job listing, software patch -- any object with a URI. |
Uses of ItemEntry in yarfraw.io |
---|
Methods in yarfraw.io with parameters of type ItemEntry | |
---|---|
FeedAppender |
FeedAppender.appendAllItemsToBeginning(ItemEntry... items)
Appends all of the ItemEntry to the beginning of the item list in the current feed. |
FeedAppender |
FeedAppender.appendAllItemsToEnd(ItemEntry... items)
Appends all of the ItemEntry to the end of the item list in the current feed. |
FeedAppender |
FeedAppender.setItem(int index,
ItemEntry item)
Set the item at index index to be the input item |
Method parameters in yarfraw.io with type arguments of type ItemEntry | |
---|---|
FeedAppender |
FeedAppender.appendAllItemsAt(int index,
List<ItemEntry> items)
Appends all of the ItemEntry in the specified collection into the current feed
at the specified position (optional operation). |
FeedAppender |
FeedAppender.appendAllItemsToBeginning(List<ItemEntry> items)
Appends all of the ItemEntry to the beginning of the item list in the current feed. |
FeedAppender |
FeedAppender.appendAllItemsToEnd(List<ItemEntry> items)
Appends all of the ItemEntry to the end of the item list in current feed. |
Uses of ItemEntry in yarfraw.mapping.forward.impl |
---|
Methods in yarfraw.mapping.forward.impl with parameters of type ItemEntry | |
---|---|
JAXBElement<TRss10Item> |
ToRss10ChannelItemImpl.execute(ItemEntry item)
|
static EntryType |
Atom10MappingUtils.toEntry(ItemEntry item)
|
static JAXBElement<TRss10Item> |
ToRss10ChannelItemImpl.toRss10Item(ItemEntry item)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |