Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
de.gesellix.docker.remote.api.ServiceJsonAdapter.kt Maven / Gradle / Ivy
// 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 java.lang.reflect.Constructor
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.emptySet
import kotlin.jvm.Volatile
import kotlin.text.buildString
public class ServiceJsonAdapter(
moshi: Moshi,
) : JsonAdapter() {
private val options: JsonReader.Options = JsonReader.Options.of("ID", "Version", "CreatedAt",
"UpdatedAt", "Spec", "Endpoint", "UpdateStatus", "ServiceStatus", "JobStatus")
private val nullableStringAdapter: JsonAdapter = moshi.adapter(String::class.java,
emptySet(), "ID")
private val nullableObjectVersionAdapter: JsonAdapter =
moshi.adapter(ObjectVersion::class.java, emptySet(), "version")
private val nullableServiceSpecAdapter: JsonAdapter =
moshi.adapter(ServiceSpec::class.java, emptySet(), "spec")
private val nullableServiceEndpointAdapter: JsonAdapter =
moshi.adapter(ServiceEndpoint::class.java, emptySet(), "endpoint")
private val nullableServiceUpdateStatusAdapter: JsonAdapter =
moshi.adapter(ServiceUpdateStatus::class.java, emptySet(), "updateStatus")
private val nullableServiceServiceStatusAdapter: JsonAdapter =
moshi.adapter(ServiceServiceStatus::class.java, emptySet(), "serviceStatus")
private val nullableServiceJobStatusAdapter: JsonAdapter =
moshi.adapter(ServiceJobStatus::class.java, emptySet(), "jobStatus")
@Volatile
private var constructorRef: Constructor? = null
public override fun toString(): String = buildString(29) {
append("GeneratedJsonAdapter(").append("Service").append(')') }
public override fun fromJson(reader: JsonReader): Service {
var ID: String? = null
var version: ObjectVersion? = null
var createdAt: String? = null
var updatedAt: String? = null
var spec: ServiceSpec? = null
var endpoint: ServiceEndpoint? = null
var updateStatus: ServiceUpdateStatus? = null
var serviceStatus: ServiceServiceStatus? = null
var jobStatus: ServiceJobStatus? = 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 -> {
version = nullableObjectVersionAdapter.fromJson(reader)
// $mask = $mask and (1 shl 1).inv()
mask0 = mask0 and 0xfffffffd.toInt()
}
2 -> {
createdAt = nullableStringAdapter.fromJson(reader)
// $mask = $mask and (1 shl 2).inv()
mask0 = mask0 and 0xfffffffb.toInt()
}
3 -> {
updatedAt = nullableStringAdapter.fromJson(reader)
// $mask = $mask and (1 shl 3).inv()
mask0 = mask0 and 0xfffffff7.toInt()
}
4 -> {
spec = nullableServiceSpecAdapter.fromJson(reader)
// $mask = $mask and (1 shl 4).inv()
mask0 = mask0 and 0xffffffef.toInt()
}
5 -> {
endpoint = nullableServiceEndpointAdapter.fromJson(reader)
// $mask = $mask and (1 shl 5).inv()
mask0 = mask0 and 0xffffffdf.toInt()
}
6 -> {
updateStatus = nullableServiceUpdateStatusAdapter.fromJson(reader)
// $mask = $mask and (1 shl 6).inv()
mask0 = mask0 and 0xffffffbf.toInt()
}
7 -> {
serviceStatus = nullableServiceServiceStatusAdapter.fromJson(reader)
// $mask = $mask and (1 shl 7).inv()
mask0 = mask0 and 0xffffff7f.toInt()
}
8 -> {
jobStatus = nullableServiceJobStatusAdapter.fromJson(reader)
// $mask = $mask and (1 shl 8).inv()
mask0 = mask0 and 0xfffffeff.toInt()
}
-1 -> {
// Unknown name, skip it.
reader.skipName()
reader.skipValue()
}
}
}
reader.endObject()
if (mask0 == 0xfffffe00.toInt()) {
// All parameters with defaults are set, invoke the constructor directly
return Service(
ID = ID,
version = version,
createdAt = createdAt,
updatedAt = updatedAt,
spec = spec,
endpoint = endpoint,
updateStatus = updateStatus,
serviceStatus = serviceStatus,
jobStatus = jobStatus
)
} else {
// Reflectively invoke the synthetic defaults constructor
@Suppress("UNCHECKED_CAST")
val localConstructor: Constructor = this.constructorRef ?:
Service::class.java.getDeclaredConstructor(String::class.java, ObjectVersion::class.java,
String::class.java, String::class.java, ServiceSpec::class.java,
ServiceEndpoint::class.java, ServiceUpdateStatus::class.java,
ServiceServiceStatus::class.java, ServiceJobStatus::class.java,
Int::class.javaPrimitiveType, Util.DEFAULT_CONSTRUCTOR_MARKER).also {
this.constructorRef = it }
return localConstructor.newInstance(
ID,
version,
createdAt,
updatedAt,
spec,
endpoint,
updateStatus,
serviceStatus,
jobStatus,
mask0,
/* DefaultConstructorMarker */ null
)
}
}
public override fun toJson(writer: JsonWriter, value_: Service?): 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("Version")
nullableObjectVersionAdapter.toJson(writer, value_.version)
writer.name("CreatedAt")
nullableStringAdapter.toJson(writer, value_.createdAt)
writer.name("UpdatedAt")
nullableStringAdapter.toJson(writer, value_.updatedAt)
writer.name("Spec")
nullableServiceSpecAdapter.toJson(writer, value_.spec)
writer.name("Endpoint")
nullableServiceEndpointAdapter.toJson(writer, value_.endpoint)
writer.name("UpdateStatus")
nullableServiceUpdateStatusAdapter.toJson(writer, value_.updateStatus)
writer.name("ServiceStatus")
nullableServiceServiceStatusAdapter.toJson(writer, value_.serviceStatus)
writer.name("JobStatus")
nullableServiceJobStatusAdapter.toJson(writer, value_.jobStatus)
writer.endObject()
}
}