i did search for information on this, but unfortunately couldnt find one .. Can anyone help with this ?
Example :
URL feed = new URL(feedUrl);
SyndFeedInput input = new SyndFeedInput();
SyndFeed feedAllData = input.build(new XmlReader(feed));
List<SyndEntry> data = feedAllData.getEntries();
Does the List object "data" always contain the feed entries in the order that the feed published (i.e. the latest feed first and the rest in descending order of published date) ?
the outputs i got do list it in that order but im not a 100% sure whether its dependable and i can forgo the sorting excess.