Class Comment

评论

XML Comment 节点的表示形式。

方法

方法返回类型简介
detach()Content将节点从其父级 Element 节点分离。
getParentElement()Element获取节点的父 Element 节点。
getText()String获取 Comment 节点的文本值。
getValue()String获取节点的直接或间接子节点的所有文本值,按文档中显示的顺序。
setText(text)Comment设置 Comment 节点的文本值。

详细文档

detach()

将节点从其父级 Element 节点分离。如果节点没有父节点,此方法将无效。

返回

Content - 分离的节点


getParentElement()

获取节点的父 Element 节点。如果节点没有父节点,此方法会返回 null

返回

Element - 父 Element 节点


getText()

获取 Comment 节点的文本值。

返回

String - Comment 节点的文本值


getValue()

获取节点的直接或间接子节点的所有文本值,按文档中显示的顺序。

返回

String - 节点的直接或间接子节点的所有文本值


setText(text)

设置 Comment 节点的文本值。

参数

名称类型说明
textString要设置的文本值

返回

Comment - Comment 节点,用于链式调用