XmlToken
Raw tokens produced when reading an XML document as a stream
Inheritors
Types
Link copied to clipboard
data class BeginElement(val depth: Int, val name: XmlToken.QualifiedName, val attributes: Map<XmlToken.QualifiedName, String> = emptyMap(), val nsDeclarations: List<XmlToken.Namespace> = emptyList()) : XmlToken
The opening of an XML element
Link copied to clipboard
The end of the XML stream to signal that the XML-encoded value has no more tokens
Link copied to clipboard
The closing of an XML element
Link copied to clipboard
Defines the name and namespace of an element
Link copied to clipboard