Package org.exist.storage.dom

Examples of org.exist.storage.dom.NodeIterator


    public Iterator<StoredNode> getNodeIterator(final StoredNode node) {
        if(node == null) {
            throw new IllegalArgumentException("The node parameter cannot be null.");
        }
        try {
            return new NodeIterator(this, domDb, node, false);
        } catch(final BTreeException | IOException e) {
            LOG.warn("failed to create node iterator", e);
        }
        return null;
    }
View Full Code Here

TOP

Related Classes of org.exist.storage.dom.NodeIterator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.