Example usage for Java javax.xml.xpath XPathFactory fields, constructors, methods, implement or subclass
The text is from its open source code.
String | DEFAULT_PROPERTY_NAME The default property name according to the JAXP spec. |
String | DEFAULT_OBJECT_MODEL_URI Default Object Model URI. |
Class> | getClass() Returns the runtime class of this Object . |
XPathFactory | newInstance() Get a new XPathFactory instance using the default object model, #DEFAULT_OBJECT_MODEL_URI , the W3C DOM. This method is functionally equivalent to: newInstance(DEFAULT_OBJECT_MODEL_URI) Since the implementation for the W3C DOM is always available, this method will never fail. |
XPathFactory | newInstance(final String uri) Get a new XPathFactory instance using the specified object model. To find a XPathFactory object, this method looks the following places in the following order where "the class loader" refers to the context class loader:
|
XPath | newXPath() Return a new |
void | setXPathFunctionResolver(XPathFunctionResolver resolver) Establish a default function resolver. Any A |
void | setXPathVariableResolver(XPathVariableResolver resolver) Establish a default variable resolver. Any A |