Package | Description |
---|---|
com.rometools.modules.mediarss.io |
This package contains parsers and generators for the module as well as a specia feed
parser for Yahoo's custom RSS2 namespace.
|
com.rometools.opml.feed.opml |
This package represents the base objects for OPML support for ROME.
|
com.rometools.opml.feed.synd.impl |
This packages contains the SyndFeed converters for the
OPML module.
|
com.rometools.opml.io.impl |
This package contains the feed parsers for OPML1 and OPML2.
|
com.rometools.rome.feed.atom | |
com.rometools.rome.feed.rss | |
com.rometools.rome.feed.synd | |
com.rometools.rome.feed.synd.impl | |
com.rometools.rome.io | |
com.rometools.rome.io.impl |
Modifier and Type | Method and Description |
---|---|
protected WireFeed |
RSS20YahooParser.parseChannel(org.jdom2.Element rssRoot,
Locale locale)
After we parse the feed we put "rss_2.0" in it (so converters and generators work) this
parser is a phantom.
|
Modifier and Type | Class and Description |
---|---|
class |
Opml
This class represents the root of an OPML 1/2 feed and contains the elements that may appear in the <head> tag
of the feed.
|
Modifier and Type | Method and Description |
---|---|
WireFeed |
ConverterForOPML10.createRealFeed(SyndFeed syndFeed)
Creates real feed with a deep copy/conversion of the values of a SyndFeedImpl.
|
WireFeed |
ConverterForOPML20.createRealFeed(SyndFeed syndFeed)
Creates real feed with a deep copy/conversion of the values of a SyndFeedImpl.
|
Modifier and Type | Method and Description |
---|---|
void |
ConverterForOPML10.copyInto(WireFeed feed,
SyndFeed syndFeed)
Makes a deep copy/conversion of the values of a real feed into a SyndFeedImpl.
|
void |
ConverterForOPML20.copyInto(WireFeed feed,
SyndFeed syndFeed)
Makes a deep copy/conversion of the values of a real feed into a SyndFeedImpl.
|
Modifier and Type | Method and Description |
---|---|
WireFeed |
OPML10Parser.parse(org.jdom2.Document document,
boolean validate,
Locale locale)
Parses an XML document (JDOM Document) into a feed bean.
|
WireFeed |
OPML20Parser.parse(org.jdom2.Document document,
boolean validate,
Locale locale)
Parses an XML document (JDOM Document) into a feed bean.
|
Modifier and Type | Method and Description |
---|---|
org.jdom2.Document |
OPML20Generator.generate(WireFeed feed)
Creates an XML document (JDOM) for the given feed bean.
|
org.jdom2.Document |
OPML10Generator.generate(WireFeed feed)
Creates an XML document (JDOM) for the given feed bean.
|
Modifier and Type | Class and Description |
---|---|
class |
Feed
Bean for Atom feeds.
|
Modifier and Type | Class and Description |
---|---|
class |
Channel
Bean for RSS feeds.
|
Modifier and Type | Method and Description |
---|---|
WireFeed |
Converter.createRealFeed(SyndFeed syndFeed)
Creates real feed with a deep copy/conversion of the values of a SyndFeedImpl.
|
WireFeed |
SyndFeedImpl.createWireFeed()
Creates a real feed containing the information of the SyndFeedImpl.
|
WireFeed |
SyndFeed.createWireFeed()
Creates a real feed containing the information of the SyndFeedImpl.
|
WireFeed |
SyndFeedImpl.createWireFeed(String feedType)
Creates a real feed containing the information of the SyndFeedImpl.
|
WireFeed |
SyndFeed.createWireFeed(String feedType)
Creates a real feed containing the information of the SyndFeedImpl.
|
WireFeed |
SyndFeedImpl.originalWireFeed()
Returns the WireFeed this SyndFeed was created from.
|
WireFeed |
SyndFeed.originalWireFeed()
Returns the WireFeed this SyndFeed was created from.
|
Modifier and Type | Method and Description |
---|---|
void |
Converter.copyInto(WireFeed feed,
SyndFeed syndFeed)
Makes a deep copy/conversion of the values of a real feed into a SyndFeedImpl.
|
Constructor and Description |
---|
SyndFeedImpl(WireFeed feed)
Creates a SyndFeedImpl and populates all its properties out of the given RSS Channel or Atom
Feed properties.
|
SyndFeedImpl(WireFeed feed,
boolean preserveWireFeed)
Creates a SyndFeedImpl and populates all its properties out of the given RSS Channel or Atom
Feed properties, while optionally preserving the WireFeed for access via the
orignalWireFeed() method.
|
Modifier and Type | Method and Description |
---|---|
protected WireFeed |
ConverterForRSS10.createRealFeed(String type,
SyndFeed syndFeed) |
protected WireFeed |
ConverterForRSS090.createRealFeed(String type,
SyndFeed syndFeed) |
protected WireFeed |
ConverterForRSS091Userland.createRealFeed(String type,
SyndFeed syndFeed) |
protected WireFeed |
ConverterForRSS094.createRealFeed(String type,
SyndFeed syndFeed) |
WireFeed |
ConverterForRSS090.createRealFeed(SyndFeed syndFeed) |
WireFeed |
ConverterForAtom10.createRealFeed(SyndFeed syndFeed) |
WireFeed |
ConverterForAtom03.createRealFeed(SyndFeed syndFeed) |
Modifier and Type | Method and Description |
---|---|
void |
ConverterForRSS10.copyInto(WireFeed feed,
SyndFeed syndFeed) |
void |
ConverterForRSS090.copyInto(WireFeed feed,
SyndFeed syndFeed) |
void |
ConverterForAtom10.copyInto(WireFeed feed,
SyndFeed syndFeed) |
void |
ConverterForRSS091Userland.copyInto(WireFeed feed,
SyndFeed syndFeed) |
void |
ConverterForRSS094.copyInto(WireFeed feed,
SyndFeed syndFeed) |
void |
ConverterForAtom03.copyInto(WireFeed feed,
SyndFeed syndFeed) |
Modifier and Type | Method and Description |
---|---|
WireFeed |
WireFeedInput.build(Document document)
Builds an WireFeed (RSS or Atom) from an W3C DOM document.
|
WireFeed |
WireFeedInput.build(org.jdom2.Document document)
Builds an WireFeed (RSS or Atom) from an JDOM document.
|
WireFeed |
WireFeedInput.build(File file)
Builds an WireFeed (RSS or Atom) from a file.
|
WireFeed |
WireFeedInput.build(InputSource is)
Builds an WireFeed (RSS or Atom) from an W3C SAX InputSource.
|
WireFeed |
WireFeedInput.build(Reader reader)
Builds an WireFeed (RSS or Atom) from an Reader.
|
WireFeed |
WireFeedParser.parse(org.jdom2.Document document,
boolean validate,
Locale locale)
Parses an XML document (JDOM Document) into a feed bean.
|
Modifier and Type | Method and Description |
---|---|
org.jdom2.Document |
WireFeedGenerator.generate(WireFeed feed)
Creates an XML document (JDOM) for the given feed bean.
|
void |
WireFeedOutput.output(WireFeed feed,
File file)
Creates a File containing with the XML representation for the given WireFeed.
|
void |
WireFeedOutput.output(WireFeed feed,
File file,
boolean prettyPrint)
Creates a File containing with the XML representation for the given WireFeed.
|
void |
WireFeedOutput.output(WireFeed feed,
Writer writer)
Writes to an Writer the XML representation for the given WireFeed.
|
void |
WireFeedOutput.output(WireFeed feed,
Writer writer,
boolean prettyPrint)
Writes to an Writer the XML representation for the given WireFeed.
|
org.jdom2.Document |
WireFeedOutput.outputJDom(WireFeed feed)
Creates a JDOM document for the given WireFeed.
|
String |
WireFeedOutput.outputString(WireFeed feed)
Creates a String with the XML representation for the given WireFeed.
|
String |
WireFeedOutput.outputString(WireFeed feed,
boolean prettyPrint)
Creates a String with the XML representation for the given WireFeed.
|
Document |
WireFeedOutput.outputW3CDom(WireFeed feed)
Creates a W3C DOM document for the given WireFeed.
|
Modifier and Type | Method and Description |
---|---|
WireFeed |
Atom10Parser.parse(org.jdom2.Document document,
boolean validate,
Locale locale) |
WireFeed |
RSS090Parser.parse(org.jdom2.Document document,
boolean validate,
Locale locale) |
WireFeed |
Atom03Parser.parse(org.jdom2.Document document,
boolean validate,
Locale locale) |
protected WireFeed |
RSS10Parser.parseChannel(org.jdom2.Element rssRoot,
Locale locale) |
protected WireFeed |
RSS094Parser.parseChannel(org.jdom2.Element rssRoot,
Locale locale) |
protected WireFeed |
RSS091UserlandParser.parseChannel(org.jdom2.Element rssRoot,
Locale locale)
Parses the root element of an RSS document into a Channel bean.
|
protected WireFeed |
RSS092Parser.parseChannel(org.jdom2.Element rssRoot,
Locale locale) |
protected WireFeed |
RSS20wNSParser.parseChannel(org.jdom2.Element rssRoot,
Locale locale)
After we parse the feed we put "rss_2.0" in it (so converters and generators work) this
parser is a phantom.
|
protected WireFeed |
RSS090Parser.parseChannel(org.jdom2.Element rssRoot,
Locale locale)
Parses the root element of an RSS document into a Channel bean.
|
protected WireFeed |
Atom10Parser.parseFeed(org.jdom2.Element eFeed,
Locale locale) |
protected WireFeed |
Atom03Parser.parseFeed(org.jdom2.Element eFeed,
Locale locale) |
Modifier and Type | Method and Description |
---|---|
org.jdom2.Document |
RSS090Generator.generate(WireFeed feed) |
org.jdom2.Document |
Atom10Generator.generate(WireFeed wFeed) |
org.jdom2.Document |
Atom03Generator.generate(WireFeed wFeed) |
Copyright © 2023. All rights reserved.