Package org.exist.xquery.value

Examples of org.exist.xquery.value.MemoryNodeSet


                        break;
                    default:
                        throw new XPathException(this, "Wrong axis specified");
                }
            } else {
                final MemoryNodeSet ctxNodes = contextSequence.toMemNodeSet();
                final MemoryNodeSet nodes = set.toMemNodeSet();
                switch(axis) {
                    case Constants.DESCENDANT_SELF_AXIS:
                        result = ctxNodes.selectDescendants(nodes);
                        break;
                    case Constants.CHILD_AXIS:
View Full Code Here

TOP

Related Classes of org.exist.xquery.value.MemoryNodeSet

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.