Path: blob/aarch64-shenandoah-jdk8u272-b10/jaxp/src/org/w3c/dom/xpath/XPathExpression.java
86410 views
/*1* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.2*3* This code is free software; you can redistribute it and/or modify it4* under the terms of the GNU General Public License version 2 only, as5* published by the Free Software Foundation. Oracle designates this6* particular file as subject to the "Classpath" exception as provided7* by Oracle in the LICENSE file that accompanied this code.8*9* This code is distributed in the hope that it will be useful, but WITHOUT10* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or11* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License12* version 2 for more details (a copy is included in the LICENSE file that13* accompanied this code).14*15* You should have received a copy of the GNU General Public License version16* 2 along with this work; if not, write to the Free Software Foundation,17* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.18*19* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA20* or visit www.oracle.com if you need additional information or have any21* questions.22*/2324/*25* This file is available under and governed by the GNU General Public26* License version 2 only, as published by the Free Software Foundation.27* However, the following notice accompanied the original version of this28* file and, per its terms, should not be removed:29*30* Copyright (c) 2002 World Wide Web Consortium,31* (Massachusetts Institute of Technology, Institut National de32* Recherche en Informatique et en Automatique, Keio University). All33* Rights Reserved. This program is distributed under the W3C's Software34* Intellectual Property License. This program is distributed in the35* hope that it will be useful, but WITHOUT ANY WARRANTY; without even36* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR37* PURPOSE.38* See W3C License http://www.w3.org/Consortium/Legal/ for more details.39*/4041package org.w3c.dom.xpath;424344import org.w3c.dom.Node;45import org.w3c.dom.DOMException;4647/**48* The <code>XPathExpression</code> interface represents a parsed and resolved49* XPath expression.50* <p>See also the <a href='http://www.w3.org/2002/08/WD-DOM-Level-3-XPath-20020820'>Document Object Model (DOM) Level 3 XPath Specification</a>.51*/52public interface XPathExpression {53/**54* Evaluates this XPath expression and returns a result.55* @param contextNode The <code>context</code> is context node for the56* evaluation of this XPath expression.If the XPathEvaluator was57* obtained by casting the <code>Document</code> then this must be58* owned by the same document and must be a <code>Document</code>,59* <code>Element</code>, <code>Attribute</code>, <code>Text</code>,60* <code>CDATASection</code>, <code>Comment</code>,61* <code>ProcessingInstruction</code>, or <code>XPathNamespace</code>62* node.If the context node is a <code>Text</code> or a63* <code>CDATASection</code>, then the context is interpreted as the64* whole logical text node as seen by XPath, unless the node is empty65* in which case it may not serve as the XPath context.66* @param type If a specific <code>type</code> is specified, then the67* result will be coerced to return the specified type relying on68* XPath conversions and fail if the desired coercion is not possible.69* This must be one of the type codes of <code>XPathResult</code>.70* @param result The <code>result</code> specifies a specific result71* object which may be reused and returned by this method. If this is72* specified as <code>null</code>or the implementation does not reuse73* the specified result, a new result object will be constructed and74* returned.For XPath 1.0 results, this object will be of type75* <code>XPathResult</code>.76* @return The result of the evaluation of the XPath expression.For XPath77* 1.0 results, this object will be of type <code>XPathResult</code>.78* @exception XPathException79* TYPE_ERR: Raised if the result cannot be converted to return the80* specified type.81* @exception DOMException82* WRONG_DOCUMENT_ERR: The Node is from a document that is not supported83* by the XPathEvaluator that created this <code>XPathExpression</code>84* .85* <br>NOT_SUPPORTED_ERR: The Node is not a type permitted as an XPath86* context node or the request type is not permitted by this87* <code>XPathExpression</code>.88*/89public Object evaluate(Node contextNode,90short type,91Object result)92throws XPathException, DOMException;9394}959697