NullableAdapter

class NullableAdapter<T : Any>(wrappedAdapter: Adapter<T>) : Adapter<@JvmSuppressWildcards T?>

Constructors

Link copied to clipboard
fun <T : Any> NullableAdapter(wrappedAdapter: Adapter<T>)

Functions

Link copied to clipboard
open override fun fromJson(reader: JsonReader, customScalarAdapters: CustomScalarAdapters): T?

Deserializes the given Json to the expected Kotlin type.

Link copied to clipboard
open override fun toJson(    writer: JsonWriter,     customScalarAdapters: CustomScalarAdapters,     value: T?)

Serializes a Kotlin type into its equivalent Json representation.