-
- Type Parameters:
T
- the object type returned by the XPath evaluation.
public interface XPathEvaluationResult<T>
TheXPathEvaluationResult
interface represents the result of the evaluation of an XPath expression within the context of a particular node. The evaluation of an XPath expression can result in various result types as defined in XML Path Language (XPath) Version 1.0.- Since:
- 9
- See Also:
- XML Path Language (XPath) Version 1.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
XPathEvaluationResult.XPathResultType
XPathResultType represents possible return types of an XPath evaluation.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description XPathEvaluationResult.XPathResultType
type()
Return the result type as an enum specified byXPathResultType
T
value()
Returns the value of the result as the type<T>
specified for the class.
-
-
-
Method Detail
type
XPathEvaluationResult.XPathResultType type()
Return the result type as an enum specified byXPathResultType
- Returns:
- the result type
value
T value()
Returns the value of the result as the type<T>
specified for the class.- Returns:
- The value of the result.
-