Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for XPathFactory (0.29 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XPathAPI.java

    import javax.xml.xpath.XPathFactory;
    import javax.xml.xpath.XPathNodes;
    
    import org.codelibs.fess.crawler.exception.CrawlerSystemException;
    import org.w3c.dom.Node;
    
    public class XPathAPI {
    
        private final XPath xPath;
    
        public XPathAPI() {
            xPath = createXPath(f -> {});
        }
    
        public XPath createXPath(final Consumer<XPathFactory> builder) {
            try {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top