-
- 参数类型
-
T
- XPath评估返回的对象类型。
public interface XPathEvaluationResult<T>
XPathEvaluationResult
接口表示在特定节点的上下文中评估XPath表达式的结果。 XPath表达式的评估可以导致XML路径语言(XPath)1.0版中定义的各种结果类型。- 从以下版本开始:
- 9
- 另请参见:
- XML Path Language (XPath) Version 1.0
-
-
Nested Class Summary
Nested Classes Modifier and Type 接口 描述 static class
XPathEvaluationResult.XPathResultType
XPathResultType表示XPath评估的可能的返回类型。
-
-
-
方法详细信息
-
type
XPathEvaluationResult.XPathResultType type()
将结果类型返回为由XPathResultType
指定的枚举- 结果
- 结果类型
-
value
T value()
返回结果的值,为类指定的类型为<T>
。- 结果
- 结果的值。
-
-