de.gesellix.docker.remote.api.BuildCacheJsonAdapter.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.Types
import com.squareup.moshi.`internal`.Util
import java.lang.NullPointerException
import java.lang.reflect.Constructor
import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.MutableList
import kotlin.collections.emptySet
import kotlin.jvm.Volatile
import kotlin.text.buildString
public class BuildCacheJsonAdapter(
moshi: Moshi,
) : JsonAdapter() {
private val options: JsonReader.Options = JsonReader.Options.of("ID", "Parent", "Parents", "Type",
"Description", "InUse", "Shared", "Size", "CreatedAt", "LastUsedAt", "UsageCount")
private val nullableStringAdapter: JsonAdapter = moshi.adapter(String::class.java,
emptySet(), "ID")
private val nullableMutableListOfStringAdapter: JsonAdapter?> =
moshi.adapter(Types.newParameterizedType(MutableList::class.java, String::class.java),
emptySet(), "parents")
private val nullableTypeAdapter: JsonAdapter =
moshi.adapter(BuildCache.Type::class.java, emptySet(), "type")
private val nullableBooleanAdapter: JsonAdapter =
moshi.adapter(Boolean::class.javaObjectType, emptySet(), "inUse")
private val nullableIntAdapter: JsonAdapter = moshi.adapter(Int::class.javaObjectType,
emptySet(), "propertySize")
@Volatile
private var constructorRef: Constructor? = null
public override fun toString(): String = buildString(32) {
append("GeneratedJsonAdapter(").append("BuildCache").append(')') }
public override fun fromJson(reader: JsonReader): BuildCache {
var ID: String? = null
var parent: String? = null
var parents: MutableList? = null
var type: BuildCache.Type? = null
var description: String? = null
var inUse: Boolean? = null
var shared: Boolean? = null
var propertySize: Int? = null
var createdAt: String? = null
var lastUsedAt: String? = null
var usageCount: Int? = null
var mask0 = -1
reader.beginObject()
while (reader.hasNext()) {
when (reader.selectName(options)) {
0 -> {
ID = nullableStringAdapter.fromJson(reader)
// $mask = $mask and (1 shl 0).inv()
mask0 = mask0 and 0xfffffffe.toInt()
}
1 -> {
parent = nullableStringAdapter.fromJson(reader)
// $mask = $mask and (1 shl 1).inv()
mask0 = mask0 and 0xfffffffd.toInt()
}
2 -> {
parents = nullableMutableListOfStringAdapter.fromJson(reader)
// $mask = $mask and (1 shl 2).inv()
mask0 = mask0 and 0xfffffffb.toInt()
}
3 -> {
type = nullableTypeAdapter.fromJson(reader)
// $mask = $mask and (1 shl 3).inv()
mask0 = mask0 and 0xfffffff7.toInt()
}
4 -> {
description = nullableStringAdapter.fromJson(reader)
// $mask = $mask and (1 shl 4).inv()
mask0 = mask0 and 0xffffffef.toInt()
}
5 -> {
inUse = nullableBooleanAdapter.fromJson(reader)
// $mask = $mask and (1 shl 5).inv()
mask0 = mask0 and 0xffffffdf.toInt()
}
6 -> {
shared = nullableBooleanAdapter.fromJson(reader)
// $mask = $mask and (1 shl 6).inv()
mask0 = mask0 and 0xffffffbf.toInt()
}
7 -> {
propertySize = nullableIntAdapter.fromJson(reader)
// $mask = $mask and (1 shl 7).inv()
mask0 = mask0 and 0xffffff7f.toInt()
}
8 -> {
createdAt = nullableStringAdapter.fromJson(reader)
// $mask = $mask and (1 shl 8).inv()
mask0 = mask0 and 0xfffffeff.toInt()
}
9 -> {
lastUsedAt = nullableStringAdapter.fromJson(reader)
// $mask = $mask and (1 shl 9).inv()
mask0 = mask0 and 0xfffffdff.toInt()
}
10 -> {
usageCount = nullableIntAdapter.fromJson(reader)
// $mask = $mask and (1 shl 10).inv()
mask0 = mask0 and 0xfffffbff.toInt()
}
-1 -> {
// Unknown name, skip it.
reader.skipName()
reader.skipValue()
}
}
}
reader.endObject()
if (mask0 == 0xfffff800.toInt()) {
// All parameters with defaults are set, invoke the constructor directly
return BuildCache(
ID = ID,
parent = parent,
parents = parents,
type = type,
description = description,
inUse = inUse,
shared = shared,
propertySize = propertySize,
createdAt = createdAt,
lastUsedAt = lastUsedAt,
usageCount = usageCount
)
} else {
// Reflectively invoke the synthetic defaults constructor
@Suppress("UNCHECKED_CAST")
val localConstructor: Constructor = this.constructorRef ?:
BuildCache::class.java.getDeclaredConstructor(String::class.java, String::class.java,
MutableList::class.java, BuildCache.Type::class.java, String::class.java,
Boolean::class.javaObjectType, Boolean::class.javaObjectType, Int::class.javaObjectType,
String::class.java, String::class.java, Int::class.javaObjectType,
Int::class.javaPrimitiveType, Util.DEFAULT_CONSTRUCTOR_MARKER).also {
this.constructorRef = it }
return localConstructor.newInstance(
ID,
parent,
parents,
type,
description,
inUse,
shared,
propertySize,
createdAt,
lastUsedAt,
usageCount,
mask0,
/* DefaultConstructorMarker */ null
)
}
}
public override fun toJson(writer: JsonWriter, value_: BuildCache?): Unit {
if (value_ == null) {
throw NullPointerException("value_ was null! Wrap in .nullSafe() to write nullable values.")
}
writer.beginObject()
writer.name("ID")
nullableStringAdapter.toJson(writer, value_.ID)
writer.name("Parent")
nullableStringAdapter.toJson(writer, value_.parent)
writer.name("Parents")
nullableMutableListOfStringAdapter.toJson(writer, value_.parents)
writer.name("Type")
nullableTypeAdapter.toJson(writer, value_.type)
writer.name("Description")
nullableStringAdapter.toJson(writer, value_.description)
writer.name("InUse")
nullableBooleanAdapter.toJson(writer, value_.inUse)
writer.name("Shared")
nullableBooleanAdapter.toJson(writer, value_.shared)
writer.name("Size")
nullableIntAdapter.toJson(writer, value_.propertySize)
writer.name("CreatedAt")
nullableStringAdapter.toJson(writer, value_.createdAt)
writer.name("LastUsedAt")
nullableStringAdapter.toJson(writer, value_.lastUsedAt)
writer.name("UsageCount")
nullableIntAdapter.toJson(writer, value_.usageCount)
writer.endObject()
}
}