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.
sh.christian.ozone.api.lexicon.LexiconDocumentJsonAdapter.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 sh.christian.ozone.api.lexicon
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.Double
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.Map
import kotlin.collections.emptySet
import kotlin.jvm.Volatile
import kotlin.text.buildString
public class LexiconDocumentJsonAdapter(
moshi: Moshi,
) : JsonAdapter() {
private val options: JsonReader.Options = JsonReader.Options.of("lexicon", "id", "revision",
"description", "defs")
private val intAdapter: JsonAdapter = moshi.adapter(Int::class.java, emptySet(), "lexicon")
private val stringAdapter: JsonAdapter = moshi.adapter(String::class.java, emptySet(),
"id")
private val nullableDoubleAdapter: JsonAdapter =
moshi.adapter(Double::class.javaObjectType, emptySet(), "revision")
private val nullableStringAdapter: JsonAdapter = moshi.adapter(String::class.java,
emptySet(), "description")
private val mapOfStringLexiconUserTypeAdapter: JsonAdapter> =
moshi.adapter(Types.newParameterizedType(Map::class.java, String::class.java,
LexiconUserType::class.java), emptySet(), "defs")
@Volatile
private var constructorRef: Constructor? = null
public override fun toString(): String = buildString(37) {
append("GeneratedJsonAdapter(").append("LexiconDocument").append(')') }
public override fun fromJson(reader: JsonReader): LexiconDocument {
var lexicon: Int? = null
var id: String? = null
var revision: Double? = null
var description: String? = null
var defs: Map? = null
var mask0 = -1
reader.beginObject()
while (reader.hasNext()) {
when (reader.selectName(options)) {
0 -> lexicon = intAdapter.fromJson(reader) ?: throw Util.unexpectedNull("lexicon",
"lexicon", reader)
1 -> id = stringAdapter.fromJson(reader) ?: throw Util.unexpectedNull("id", "id", reader)
2 -> revision = nullableDoubleAdapter.fromJson(reader)
3 -> description = nullableStringAdapter.fromJson(reader)
4 -> {
defs = mapOfStringLexiconUserTypeAdapter.fromJson(reader) ?:
throw Util.unexpectedNull("defs", "defs", reader)
// $mask = $mask and (1 shl 4).inv()
mask0 = mask0 and 0xffffffef.toInt()
}
-1 -> {
// Unknown name, skip it.
reader.skipName()
reader.skipValue()
}
}
}
reader.endObject()
if (mask0 == 0xffffffef.toInt()) {
// All parameters with defaults are set, invoke the constructor directly
return LexiconDocument(
lexicon = lexicon ?: throw Util.missingProperty("lexicon", "lexicon", reader),
id = id ?: throw Util.missingProperty("id", "id", reader),
revision = revision,
description = description,
defs = defs as Map
)
} else {
// Reflectively invoke the synthetic defaults constructor
@Suppress("UNCHECKED_CAST")
val localConstructor: Constructor = this.constructorRef ?:
LexiconDocument::class.java.getDeclaredConstructor(Int::class.javaPrimitiveType,
String::class.java, Double::class.javaObjectType, String::class.java, Map::class.java,
Int::class.javaPrimitiveType, Util.DEFAULT_CONSTRUCTOR_MARKER).also {
this.constructorRef = it }
return localConstructor.newInstance(
lexicon ?: throw Util.missingProperty("lexicon", "lexicon", reader),
id ?: throw Util.missingProperty("id", "id", reader),
revision,
description,
defs,
mask0,
/* DefaultConstructorMarker */ null
)
}
}
public override fun toJson(writer: JsonWriter, value_: LexiconDocument?): Unit {
if (value_ == null) {
throw NullPointerException("value_ was null! Wrap in .nullSafe() to write nullable values.")
}
writer.beginObject()
writer.name("lexicon")
intAdapter.toJson(writer, value_.lexicon)
writer.name("id")
stringAdapter.toJson(writer, value_.id)
writer.name("revision")
nullableDoubleAdapter.toJson(writer, value_.revision)
writer.name("description")
nullableStringAdapter.toJson(writer, value_.description)
writer.name("defs")
mapOfStringLexiconUserTypeAdapter.toJson(writer, value_.defs)
writer.endObject()
}
}