JsonSerializer

interface JsonSerializer<T> : Json.Serializer<T>

Wrapping interface around com.badlogic.gdx.utils.Json.Serializer. Improves typing by adding nullability information and changes default parameter names.

Inheritors

Functions

Link copied to clipboard
abstract override fun read(json: Json, jsonValue: JsonValue, type: Class<*>?): T
Link copied to clipboard
abstract override fun write(json: Json, value: T, type: Class<*>?)