MetaFormat

interface MetaFormat : IOFormat<Meta>

A format for meta serialization

Functions

readMeta
Link copied to clipboard
common
abstract fun readMeta(input: Input, descriptor: MetaDescriptor? = null): Meta
readObject
Link copied to clipboard
common
open override fun readObject(input: Input): Meta
toMeta
Link copied to clipboard
common
abstract fun toMeta(): Meta
writeMeta
Link copied to clipboard
common
abstract fun writeMeta(output: Output, meta: Meta, descriptor: MetaDescriptor? = null)
writeObject
Link copied to clipboard
common
open override fun writeObject(output: Output, obj: Meta)

Properties

type
Link copied to clipboard
common
open override val type: KType

Inheritors

JsonMetaFormat
Link copied to clipboard
MetaFormatFactory
Link copied to clipboard

Extensions

parse
Link copied to clipboard
common
fun MetaFormat.parse(str: String): Meta