implicit final class BoundWriter extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- BoundWriter
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new BoundWriter(out: XMLStreamWriter)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##: Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def toString(): String
- Definition Classes
- Any
- def write[T](value: T)(implicit arg0: XmlWrite[T]): Unit
Helper to write an arbitrary value of a type that belongs to the XmlWrite typeclass, delegating to the implicit
XmlWrite[T] - def writeBase64(bytes: Array[Byte]): Unit
Helper to write the base64-encoded form an array of bytes as XML characters
- def writeElem[A](name: String, attributes: Attributes*)(inner: => A): A
Helper for writing an element.
Helper for writing an element.
- name
The element's name
- attributes
A varargs of key-value pairs to be written as attributes on the element
- inner
Code to execute before the "end element" is written, i.e. instructions to write the element's children