Package oracle.stellent.ridc.common.xml
Class XPathEvaluator
java.lang.Object
oracle.stellent.ridc.common.xml.XPathEvaluator
Parses an XML file from a given inputstream. Wraps calls into the XPath API.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected Node
protected String
protected Element
protected NamespaceContext
protected XPath
-
Constructor Summary
ConstructorsConstructorDescriptionXPathEvaluator
(InputStream xmlStream) Builds an XPathEvaluator with no namespace evaluator and non-validating, using "wcm" as the default namespace prefix.XPathEvaluator
(InputStream xmlStream, NamespaceContext namespaceContext, boolean validating, String defaultPrefix) Builds a new XPath evaluator from InputStream.XPathEvaluator
(Reader xmlReader) XPathEvaluator
(Reader xmlReader, NamespaceContext namespaceContext, boolean validating, String defaultPrefix) Builds a new XPath evaluator from a Reader.XPathEvaluator
(Element rootElement) Initialize an Evaluator object based on the current element as the rootXPathEvaluator
(Element rootElement, NamespaceContext namespaceContext) Initialize an Evaluator object based on the current element as the rootXPathEvaluator
(InputSource xmlSource, NamespaceContext namespaceContext, boolean validating, String defaultPrefix) Builds a new XPath evaluator from an InputSource. -
Method Summary
Modifier and TypeMethodDescriptionprotected XPathExpression
compileXPathExpression
(String xpath) evaluateToNode
(String xpath) Evaluate the xpath expression; return the result as a NodeevaluateToNodeList
(String xpath) Evaluate the xpath expression; return the result as a NodeListevaluateToString
(String xpath) Evaluate the xpath expression; return the result as a String.protected Object
evaluateXPath
(String xpath, QName returnType) getElementById
(String id) Retrieve an element by ID.protected XPath
getXPath()
protected void
initNamespaceContext
(NamespaceContext namespaceContext) Initialize the namespace context.void
Reset the context to the root nodevoid
setContextNode
(String xpath) Set the context of the queries to be the result of the given xpath expressionvoid
setContextNode
(Node node) Set the context of the queriesvoid
setIdAttribute
(String attribute, boolean enable) Set the ID attribute feature against this DOM tree
-
Field Details
-
m_namespaceContext
-
m_documentRoot
-
m_xpath
-
m_contextNode
-
m_defaultPrefix
-
-
Constructor Details
-
XPathEvaluator
Initialize an Evaluator object based on the current element as the root- Parameters:
rootElement
- the root of all xpath queries
-
XPathEvaluator
Initialize an Evaluator object based on the current element as the root- Parameters:
rootElement
- the root of all xpath queriesnamespaceContext
- the namespace context to use
-
XPathEvaluator
Builds an XPathEvaluator with no namespace evaluator and non-validating, using "wcm" as the default namespace prefix.- Parameters:
xmlStream
- the stream to the xml file contents- Throws:
XPathEvaluatorException
-
XPathEvaluator
public XPathEvaluator(InputStream xmlStream, NamespaceContext namespaceContext, boolean validating, String defaultPrefix) throws XPathEvaluatorException Builds a new XPath evaluator from InputStream.- Parameters:
xmlStream
- the stream to the xml file contentsnamespaceContext
- (optional) the namespace resolvervalidating
- true to set the parser to validatingdefaultPrefix
- the prefix to use for querying in the default namespace- Throws:
XPathEvaluatorException
-
XPathEvaluator
- Throws:
XPathEvaluatorException
-
XPathEvaluator
public XPathEvaluator(Reader xmlReader, NamespaceContext namespaceContext, boolean validating, String defaultPrefix) throws XPathEvaluatorException Builds a new XPath evaluator from a Reader.- Parameters:
xmlReader
- the reader to the xml file contentsnamespaceContext
- (optional) the namespace resolvervalidating
- true to set the parser to validatingdefaultPrefix
- the prefix to use for querying in the default namespace- Throws:
XPathEvaluatorException
-
XPathEvaluator
public XPathEvaluator(InputSource xmlSource, NamespaceContext namespaceContext, boolean validating, String defaultPrefix) throws XPathEvaluatorException Builds a new XPath evaluator from an InputSource.- Parameters:
xmlSource
- the inputSource to the xml file contentsnamespaceContext
- (optional) the namespace resolvervalidating
- true to set the parser to validatingdefaultPrefix
- the prefix to use for querying in the default namespace- Throws:
XPathEvaluatorException
-
-
Method Details
-
initNamespaceContext
Initialize the namespace context. Should be called by all constructors.- Parameters:
namespaceContext
- the namespace context or null to use the default
-
getNamespaceContext
- Returns:
- the configured namespace context
-
setIdAttribute
Set the ID attribute feature against this DOM tree- Parameters:
attribute
- the attribute to declare as the DOM ID attributeenable
- true to enable this attribute, false to disable the ID functionality
-
getElementById
Retrieve an element by ID. Only valid after callingsetIdAttribute(String, boolean)
to enable the ID attribute functionality.- Parameters:
id
- the ID to query- Returns:
- the node with the corresponding ID or null if not found
-
setContextNode
Set the context of the queries- Parameters:
node
- the context node
-
setContextNode
Set the context of the queries to be the result of the given xpath expression- Parameters:
xpath
- the xpath to the root for the queries
-
getContextNode
- Returns:
- the current context node
-
getRootNode
- Returns:
- get root node
-
resetContext
public void resetContext()Reset the context to the root node -
evaluateToString
Evaluate the xpath expression; return the result as a String. This typically will be the text value of the node (i.e. attribute value, non-xml child content).- Parameters:
xpath
- the xpath expression from the current context root- Returns:
- a string expression of the result
-
evaluateToNode
Evaluate the xpath expression; return the result as a Node- Parameters:
xpath
- the xpath expression from the current context root- Returns:
- a string expression of the result
-
evaluateToNodeList
Evaluate the xpath expression; return the result as a NodeList- Parameters:
xpath
- the xpath expression from the current context root- Returns:
- a string expression of the result
-
evaluateXPath
-
compileXPathExpression
- Throws:
XPathEvaluatorException
-
getXPath
-