Package org.exist.xquery.value

Examples of org.exist.xquery.value.ValueSequence.toNodeSet()


     * @see org.exist.xquery.value.Sequence#toNodeSet()
     */
    public NodeSet toNodeSet() throws XPathException {
        final ValueSequence seq = new ValueSequence();
        seq.add( this );
        return( seq.toNodeSet() );
    }

    public MemoryNodeSet toMemNodeSet() throws XPathException {
        return( new ValueSequence( this ).toMemNodeSet() );
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.