Files
gulevsky c9caf87860 add code generation of json serializers
commit_hash:3ad603b95c6c6ead4feaa591da3fbe2e91751455
2024-09-25 12:55:58 +03:00

84 lines
2.2 KiB
Kotlin

// Generated code. Do not modify.
package com.yandex.div.reference
import org.json.JSONArray
import org.json.JSONObject
class EntityWithArrayOfNestedItems(
@JvmField val items: List<Item>, // at least 1 elements
) : Hashable {
private var _propertiesHash: Int? = null
private var _hash: Int? = null
override fun propertiesHash(): Int {
_propertiesHash?.let {
return it
}
val propertiesHash = this::class.hashCode()
_propertiesHash = propertiesHash
return propertiesHash
}
override fun hash(): Int {
_hash?.let {
return it
}
val hash =
propertiesHash() +
items.sumOf { it.hash() }
_hash = hash
return hash
}
fun equals(other: EntityWithArrayOfNestedItems?, resolver: ExpressionResolver, otherResolver: ExpressionResolver): Boolean {
other ?: return false
return items.compareWith(other.items) { a, b -> a.equals(b, resolver, otherResolver) }
}
fun copy(
items: List<Item> = this.items,
) = EntityWithArrayOfNestedItems(
items = items,
)
companion object {
const val TYPE = "entity_with_array_of_nested_items"
}
class Item(
@JvmField val entity: Entity,
@JvmField val property: Expression<String>,
) : Hashable {
private var _hash: Int? = null
override fun hash(): Int {
_hash?.let {
return it
}
val hash =
this::class.hashCode() +
entity.hash() +
property.hashCode()
_hash = hash
return hash
}
fun equals(other: Item?, resolver: ExpressionResolver, otherResolver: ExpressionResolver): Boolean {
other ?: return false
return entity.equals(other.entity, resolver, otherResolver) &&
property.evaluate(resolver) == other.property.evaluate(otherResolver)
}
fun copy(
entity: Entity = this.entity,
property: Expression<String> = this.property,
) = Item(
entity = entity,
property = property,
)
}
}