XmlWriter

abstract class XmlWriter

Types

Companion
Link copied to clipboard
object Companion

Functions

close
Link copied to clipboard
abstract fun close()
lookupPrefix
Link copied to clipboard
abstract fun lookupPrefix(ns: String): String?
writeAttributes
Link copied to clipboard
open fun writeAttributes(reader: XmlReader, writeDefaultAttributes: Boolean)
writeAttributeString
Link copied to clipboard
fun writeAttributeString(name: String, value: String)
fun writeAttributeString(localName: String, namespaceUri: String, value: String)
fun writeAttributeString(prefix: String?, localName: String, namespaceUri: String, value: String)
writeCData
Link copied to clipboard
abstract fun writeCData(text: String)
writeComment
Link copied to clipboard
abstract fun writeComment(comment: String)
writeDoctype
Link copied to clipboard
abstract fun writeDoctype(name: String, publicId: String?, systemId: String?, internalSubset: String?)
writeElementString
Link copied to clipboard
fun writeElementString(name: String, value: String)
fun writeElementString(localName: String, namespaceUri: String, value: String)
fun writeElementString(prefix: String?, localName: String, namespaceUri: String, value: String)
writeEndAttribute
Link copied to clipboard
abstract fun writeEndAttribute()
writeEndDocument
Link copied to clipboard
abstract fun writeEndDocument()
writeEndElement
Link copied to clipboard
abstract fun writeEndElement()
writeEntityRef
Link copied to clipboard
abstract fun writeEntityRef(name: String)
writeFullEndElement
Link copied to clipboard
abstract fun writeFullEndElement()
writeProcessingInstruction
Link copied to clipboard
abstract fun writeProcessingInstruction(name: String, value: String?)
writeQualifiedName
Link copied to clipboard
open fun writeQualifiedName(localName: String, namespaceUri: String)
writeRaw
Link copied to clipboard
abstract fun writeRaw(text: String)
writeStartAttribute
Link copied to clipboard
fun writeStartAttribute(name: String)
abstract fun writeStartAttribute(prefix: String?, localName: String, namespaceUri: String)
writeStartDocument
Link copied to clipboard
abstract fun writeStartDocument(encoding: String? = null, standalone: Boolean? = null)
writeStartElement
Link copied to clipboard
fun writeStartElement(name: String)
fun writeStartElement(localName: String, namespaceUri: String)
abstract fun writeStartElement(prefix: String?, localName: String, namespaceUri: String)
writeString
Link copied to clipboard
abstract fun writeString(text: String)
writeWhitespace
Link copied to clipboard
abstract fun writeWhitespace(text: String)

Properties

writeState
Link copied to clipboard
abstract val writeState: WriteState
xmlLang
Link copied to clipboard
open val xmlLang: String? = null
xmlSpace
Link copied to clipboard
open val xmlSpace: XmlSpace

Inheritors

XmlTextWriter
Link copied to clipboard