Java XPath Evaluate evaluateNodeSet(XPathExpression xpe, Object item)

Here you can find the source of evaluateNodeSet(XPathExpression xpe, Object item)

Description

Evaluates the given XPath expression in the context of the given item, with the expectation of a node set result.

License

Open Source License

Parameter

Parameter Description
xpe An XPath expression.
item A context item.

Exception

Parameter Description
XPathExpressionException if the evaluation fails

Return

The result of the evaluation as a instance.

Declaration

public static NodeList evaluateNodeSet(XPathExpression xpe, Object item) throws XPathExpressionException 

Method Source Code

//package com.java2s;
/*/*ww  w.j  a v  a 2s.  c  o m*/
    
Copyright (c) 2000-2015 Board of Trustees of Leland Stanford Jr. University,
all rights reserved.
    
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
    
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
    
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
STANFORD UNIVERSITY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
    
Except as contained in this notice, the name of Stanford University shall not
be used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from Stanford University.
    
*/

import javax.xml.xpath.*;
import org.w3c.dom.*;

public class Main {
    /**
     * <p>
     * Evaluates the given XPath expression in the context of the given item, with
     * the expectation of a node set result.
     * </p>
     * 
     * @param xpe
     *          An XPath expression.
     * @param item
     *          A context item.
     * @return The result of the evaluation as a {@link NodeSet} instance.
     * @throws XPathExpressionException
     *           if the evaluation fails
     * @since 1.67.5
     * @see XPathConstants#NODESET
     */
    public static NodeList evaluateNodeSet(XPathExpression xpe, Object item) throws XPathExpressionException {
        return (NodeList) xpe.evaluate(item, XPathConstants.NODESET);
    }
}

Related

  1. evaluateAsString(String expression, Node node)
  2. evaluateAsString(String expression, Node node)
  3. evaluateNodeListTextXPath(final Document document, final String expression)
  4. evaluateNodeListXPath(final Document document, final String expression)
  5. evaluateNodes(final XPathExpression xpathExpression, final Document pom)
  6. evaluateXpath(Document doc, String xpath, QName returnType)
  7. evaluateXPath(Element element, String xpathstring)
  8. evaluateXpath(Element from, String xpath)
  9. evaluateXPath(final String xPath, final Object item, final QName returnType)