main.app.cash.better.dynamic.features.codegen.api.FeatureApiJsonAdapter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codegen-api Show documentation
Show all versions of codegen-api Show documentation
Internal APIs for the Better Dynamic Features code generator
// Code generated by moshi-kotlin-codegen. Do not edit.
@file:Suppress("DEPRECATION", "unused", "ClassName", "REDUNDANT_PROJECTION",
"RedundantExplicitType", "LocalVariableName", "RedundantVisibilityModifier",
"PLATFORM_CLASS_MAPPED_TO_KOTLIN", "IMPLICIT_NOTHING_TYPE_ARGUMENT_IN_RETURN_POSITION")
package app.cash.better.`dynamic`.features.codegen.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 FeatureApiJsonAdapter(
moshi: Moshi,
) : JsonAdapter() {
private val options: JsonReader.Options = JsonReader.Options.of("packageName", "className")
private val stringAdapter: JsonAdapter = moshi.adapter(String::class.java, emptySet(),
"packageName")
public override fun toString(): String = buildString(32) {
append("GeneratedJsonAdapter(").append("FeatureApi").append(')') }
public override fun fromJson(reader: JsonReader): FeatureApi {
var packageName: String? = null
var className: String? = null
reader.beginObject()
while (reader.hasNext()) {
when (reader.selectName(options)) {
0 -> packageName = stringAdapter.fromJson(reader) ?:
throw Util.unexpectedNull("packageName", "packageName", reader)
1 -> className = stringAdapter.fromJson(reader) ?: throw Util.unexpectedNull("className",
"className", reader)
-1 -> {
// Unknown name, skip it.
reader.skipName()
reader.skipValue()
}
}
}
reader.endObject()
return FeatureApi(
packageName = packageName ?: throw Util.missingProperty("packageName", "packageName",
reader),
className = className ?: throw Util.missingProperty("className", "className", reader)
)
}
public override fun toJson(writer: JsonWriter, value_: FeatureApi?): Unit {
if (value_ == null) {
throw NullPointerException("value_ was null! Wrap in .nullSafe() to write nullable values.")
}
writer.beginObject()
writer.name("packageName")
stringAdapter.toJson(writer, value_.packageName)
writer.name("className")
stringAdapter.toJson(writer, value_.className)
writer.endObject()
}
}