de.gesellix.docker.remote.api.FilesystemChangeJsonAdapter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-remote-api-model-1-45 Show documentation
Show all versions of docker-remote-api-model-1-45 Show documentation
API model for the Docker remote api v1.45
// Code generated by moshi-kotlin-codegen. Do not edit.
@file:Suppress("DEPRECATION", "unused", "UNUSED_PARAMETER", "ClassName", "REDUNDANT_PROJECTION",
"RedundantExplicitType", "LocalVariableName", "RedundantVisibilityModifier",
"PLATFORM_CLASS_MAPPED_TO_KOTLIN", "IMPLICIT_NOTHING_TYPE_ARGUMENT_IN_RETURN_POSITION")
package de.gesellix.docker.remote.api
import com.squareup.moshi.JsonAdapter
import com.squareup.moshi.JsonReader
import com.squareup.moshi.JsonWriter
import com.squareup.moshi.Moshi
import com.squareup.moshi.`internal`.Util
import java.lang.NullPointerException
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.emptySet
import kotlin.text.buildString
public class FilesystemChangeJsonAdapter(
moshi: Moshi,
) : JsonAdapter() {
private val options: JsonReader.Options = JsonReader.Options.of("Path", "Kind")
private val stringAdapter: JsonAdapter = moshi.adapter(String::class.java, emptySet(),
"path")
private val changeTypeAdapter: JsonAdapter = moshi.adapter(ChangeType::class.java,
emptySet(), "kind")
public override fun toString(): String = buildString(38) {
append("GeneratedJsonAdapter(").append("FilesystemChange").append(')') }
public override fun fromJson(reader: JsonReader): FilesystemChange {
var path: String? = null
var kind: ChangeType? = null
reader.beginObject()
while (reader.hasNext()) {
when (reader.selectName(options)) {
0 -> path = stringAdapter.fromJson(reader) ?: throw Util.unexpectedNull("path", "Path",
reader)
1 -> kind = changeTypeAdapter.fromJson(reader) ?: throw Util.unexpectedNull("kind", "Kind",
reader)
-1 -> {
// Unknown name, skip it.
reader.skipName()
reader.skipValue()
}
}
}
reader.endObject()
return FilesystemChange(
path = path ?: throw Util.missingProperty("path", "Path", reader),
kind = kind ?: throw Util.missingProperty("kind", "Kind", reader)
)
}
public override fun toJson(writer: JsonWriter, value_: FilesystemChange?): Unit {
if (value_ == null) {
throw NullPointerException("value_ was null! Wrap in .nullSafe() to write nullable values.")
}
writer.beginObject()
writer.name("Path")
stringAdapter.toJson(writer, value_.path)
writer.name("Kind")
changeTypeAdapter.toJson(writer, value_.kind)
writer.endObject()
}
}