通用 XML 节点的表示形式。
实现类
方法
方法 | 返回类型 | 简介 |
---|---|---|
asCdata() | Cdata | 出于自动补全目的,将节点转换为 CDATASection 节点。 |
asComment() | Comment | 出于自动补全目的,将节点转换为 Comment 节点。 |
asDocType() | DocType | 出于自动补全目的,将节点转换为 DocumentType 节点。 |
asElement() | Element | 出于自动补全目的,将节点转换为 Element 节点。 |
asEntityRef() | EntityRef | 出于自动补全目的,将节点转换为 EntityReference 节点。 |
asProcessingInstruction() | ProcessingInstruction | 出于自动补全目的,将节点转换为 ProcessingInstruction 节点。 |
asText() | Text | 出于自动补全目的,将节点转换为 Text 节点。 |
detach() | Content | 将节点与其父 Element 节点分离。 |
getParentElement() | Element | 获取节点的父级 Element 节点。 |
getType() | ContentType | 获取节点的内容类型。 |
getValue() | String | 按照节点在文档中出现的顺序获取作为节点的直接或间接子节点的所有节点的文本值。 |
详细文档
asCdata()
出于自动补全目的,将节点转换为 CDATASection
节点。如果节点的 ContentType
还不是 CDATA
,此方法会返回 null
。
弃踢回攻
Cdata
- CDATASection
节点
asComment()
出于自动补全目的,将节点转换为 Comment
节点。如果节点的 ContentType
还不是 COMMENT
,此方法会返回 null
。
弃踢回攻
asDocType()
出于自动补全目的,将节点转换为 DocumentType
节点。如果节点的 ContentType
还不是 DOCTYPE
,此方法会返回 null
。
弃踢回攻
DocType
- DocumentType
节点
asElement()
asEntityRef()
出于自动补全目的,将节点转换为 EntityReference
节点。
如果节点的 ContentType
还不是 ENTITYREF
,此方法会返回 null
。
弃踢回攻
EntityRef
- EntityReference
节点
asProcessingInstruction()
出于自动补全目的,将节点转换为 ProcessingInstruction
节点。如果节点的 ContentType
还不是 PROCESSINGINSTRUCTION
,此方法会返回 null
。
弃踢回攻
ProcessingInstruction
- ProcessingInstruction
节点
asText()
getType()
getValue()
按照节点在文档中出现的顺序获取作为节点的直接或间接子节点的所有节点的文本值。
弃踢回攻
String
- 所有是节点直接或间接子节点的文本值