com.sun.syndication.io.WireFeedInput.getFeedParsers()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(4.2k)|赞(0)|评价(0)|浏览(76)

本文整理了Java中com.sun.syndication.io.WireFeedInput.getFeedParsers()方法的一些代码示例,展示了WireFeedInput.getFeedParsers()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WireFeedInput.getFeedParsers()方法的具体详情如下:
包路径:com.sun.syndication.io.WireFeedInput
类名称:WireFeedInput
方法名:getFeedParsers

WireFeedInput.getFeedParsers介绍

暂无

代码示例

代码示例来源:origin: rome/rome

/**
 * Returns the list of supported input feed types.
 * <p>
 * @see WireFeed for details on the format of these strings.
 * <p>
 * @return a list of String elements with the supported input feed types.
 *
 */
public static List getSupportedFeedTypes() {
  return getFeedParsers().getSupportedFeedTypes();
}

代码示例来源:origin: com.sun.syndication/com.springsource.com.sun.syndication

/**
 * Returns the list of supported input feed types.
 * <p>
 * @see WireFeed for details on the format of these strings.
 * <p>
 * @return a list of String elements with the supported input feed types.
 *
 */
public static List getSupportedFeedTypes() {
  return getFeedParsers().getSupportedFeedTypes();
}

代码示例来源:origin: org.apache.marmotta/sesame-tools-rio-rss

/**
 * Returns the list of supported input feed types.
 * <p>
 * @see WireFeed for details on the format of these strings.
 * <p>
 * @return a list of String elements with the supported input feed types.
 *
 */
public static List getSupportedFeedTypes() {
  return getFeedParsers().getSupportedFeedTypes();
}

代码示例来源:origin: apache/marmotta

/**
 * Returns the list of supported input feed types.
 * <p>
 * @see WireFeed for details on the format of these strings.
 * <p>
 * @return a list of String elements with the supported input feed types.
 *
 */
public static List getSupportedFeedTypes() {
  return getFeedParsers().getSupportedFeedTypes();
}

代码示例来源:origin: rome/rome

/**
 * Builds an WireFeed (RSS or Atom) from an JDOM document.
 * <p>
 * NOTE: All other build methods delegate to this method.
 * <p>
 * @param document JDOM document to read to create the WireFeed.
 * @return the WireFeed read from the JDOM document.
 * @throws IllegalArgumentException thrown if feed type could not be understood by any of the underlying parsers.
 * @throws FeedException if the feed could not be parsed
 *
 */
public WireFeed build(Document document) throws IllegalArgumentException,FeedException {
  WireFeedParser parser = getFeedParsers().getParserFor(document);
  if (parser==null) {
    throw new IllegalArgumentException("Invalid document");
  }
  return parser.parse(document, _validate);
}

代码示例来源:origin: com.sun.syndication/com.springsource.com.sun.syndication

/**
 * Builds an WireFeed (RSS or Atom) from an JDOM document.
 * <p>
 * NOTE: All other build methods delegate to this method.
 * <p>
 * @param document JDOM document to read to create the WireFeed.
 * @return the WireFeed read from the JDOM document.
 * @throws IllegalArgumentException thrown if feed type could not be understood by any of the underlying parsers.
 * @throws FeedException if the feed could not be parsed
 *
 */
public WireFeed build(Document document) throws IllegalArgumentException,FeedException {
  WireFeedParser parser = getFeedParsers().getParserFor(document);
  if (parser==null) {
    throw new IllegalArgumentException("Invalid document");
  }
  return parser.parse(document, _validate);
}

代码示例来源:origin: org.apache.marmotta/sesame-tools-rio-rss

/**
 * Builds an WireFeed (RSS or Atom) from an JDOM document.
 * <p>
 * NOTE: All other build methods delegate to this method.
 * <p>
 * @param document JDOM document to read to create the WireFeed.
 * @return the WireFeed read from the JDOM document.
 * @throws IllegalArgumentException thrown if feed type could not be understood by any of the underlying parsers.
 * @throws FeedException if the feed could not be parsed
 *
 */
public WireFeed build(Document document) throws IllegalArgumentException,FeedException {
  WireFeedParser parser = getFeedParsers().getParserFor(document);
  if (parser==null) {
    throw new IllegalArgumentException("Invalid document");
  }
  return parser.parse(document, _validate);
}

代码示例来源:origin: apache/marmotta

/**
 * Builds an WireFeed (RSS or Atom) from an JDOM document.
 * <p>
 * NOTE: All other build methods delegate to this method.
 * <p>
 * @param document JDOM document to read to create the WireFeed.
 * @return the WireFeed read from the JDOM document.
 * @throws IllegalArgumentException thrown if feed type could not be understood by any of the underlying parsers.
 * @throws FeedException if the feed could not be parsed
 *
 */
public WireFeed build(Document document) throws IllegalArgumentException,FeedException {
  WireFeedParser parser = getFeedParsers().getParserFor(document);
  if (parser==null) {
    throw new IllegalArgumentException("Invalid document");
  }
  return parser.parse(document, _validate);
}

相关文章