SerializableContainer

class SerializableContainer<T : XmlSerializable>(name: <Error class: unknown class>, delegate: Iterable<T>) : BaseSerializableContainer<T> , Iterable<T>

Constructors

Link copied to clipboard
constructor(name: <Error class: unknown class>, delegate: Iterable<T>)

Properties

Link copied to clipboard
open override val children: Iterable<T>
Link copied to clipboard
val name: <Error class: unknown class>

Functions

Link copied to clipboard
fun <T : XmlSerializable> Iterable<T>.asSerializable(name: <Error class: unknown class>): SerializableContainer<T>
Link copied to clipboard

Utility method to deserialize a list of xml containing strings

Link copied to clipboard
open fun forEach(p0: Consumer<in T>)
Link copied to clipboard
open operator override fun iterator(): Iterator<T>
Link copied to clipboard
open override fun serialize(out: <Error class: unknown class>)

Write the object to an xml stream. The object is expected to write itself and its children.

Link copied to clipboard
fun XmlSerializable.serialize(writer: <Error class: unknown class>)

Serialize the object to XML

Link copied to clipboard
Link copied to clipboard

Extension functions for writing that need different js/jvm implementations

Link copied to clipboard

Create a reader that can be used to read the xml serialization of the element.

Link copied to clipboard

Do bulk toString conversion of a list. Note that this is serialization, not dropping tags.

Link copied to clipboard