XmlElementNodeData

class XmlElementNodeData(val attributes: List<AttributeData>, val childNodes: List<NodeData>, val namespaceURI: String?, val nodeName: String, val prefix: String?) : NodeData

Represents the contents of an XML or HTML element.

Constructors

Link copied to clipboard
fun XmlElementNodeData(attributes: List<AttributeData>, childNodes: List<NodeData>, namespaceURI: String?, nodeName: String, prefix: String?)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
open override fun serialize(generator: JsonGenerator)

Properties

Link copied to clipboard

The list of attributes defined on this element.

Link copied to clipboard

The child nodes of this element.

Link copied to clipboard
Link copied to clipboard

The element name without any XML namespace prefix.

Link copied to clipboard
Link copied to clipboard

The namespace prefix used for this element.