xyz.block.ftl.v1.schema.Value.kt Maven / Gradle / Ivy
// Code generated by Wire protocol buffer compiler, do not edit.
// Source: xyz.block.ftl.v1.schema.Value in xyz/block/ftl/v1/schema/schema.proto
@file:Suppress("DEPRECATION")
package xyz.block.ftl.v1.schema
import com.squareup.wire.FieldEncoding
import com.squareup.wire.Message
import com.squareup.wire.ProtoAdapter
import com.squareup.wire.ProtoReader
import com.squareup.wire.ProtoWriter
import com.squareup.wire.ReverseProtoWriter
import com.squareup.wire.Syntax.PROTO_3
import com.squareup.wire.WireField
import com.squareup.wire.`internal`.JvmField
import com.squareup.wire.`internal`.countNonNull
import kotlin.Any
import kotlin.AssertionError
import kotlin.Boolean
import kotlin.Deprecated
import kotlin.DeprecationLevel
import kotlin.Int
import kotlin.Long
import kotlin.Nothing
import kotlin.String
import kotlin.Suppress
import okio.ByteString
public class Value(
@field:WireField(
tag = 1,
adapter = "xyz.block.ftl.v1.schema.StringValue#ADAPTER",
oneofName = "value",
schemaIndex = 0,
)
public val stringValue: StringValue? = null,
@field:WireField(
tag = 2,
adapter = "xyz.block.ftl.v1.schema.IntValue#ADAPTER",
oneofName = "value",
schemaIndex = 1,
)
public val intValue: IntValue? = null,
unknownFields: ByteString = ByteString.EMPTY,
) : Message(ADAPTER, unknownFields) {
init {
require(countNonNull(stringValue, intValue) <= 1) {
"At most one of stringValue, intValue may be non-null"
}
}
@Deprecated(
message = "Shouldn't be used in Kotlin",
level = DeprecationLevel.HIDDEN,
)
override fun newBuilder(): Nothing = throw
AssertionError("Builders are deprecated and only available in a javaInterop build; see https://square.github.io/wire/wire_compiler/#kotlin")
override fun equals(other: Any?): Boolean {
if (other === this) return true
if (other !is Value) return false
if (unknownFields != other.unknownFields) return false
if (stringValue != other.stringValue) return false
if (intValue != other.intValue) return false
return true
}
override fun hashCode(): Int {
var result = super.hashCode
if (result == 0) {
result = unknownFields.hashCode()
result = result * 37 + (stringValue?.hashCode() ?: 0)
result = result * 37 + (intValue?.hashCode() ?: 0)
super.hashCode = result
}
return result
}
override fun toString(): String {
val result = mutableListOf()
if (stringValue != null) result += """stringValue=$stringValue"""
if (intValue != null) result += """intValue=$intValue"""
return result.joinToString(prefix = "Value{", separator = ", ", postfix = "}")
}
public fun copy(
stringValue: StringValue? = this.stringValue,
intValue: IntValue? = this.intValue,
unknownFields: ByteString = this.unknownFields,
): Value = Value(stringValue, intValue, unknownFields)
public companion object {
@JvmField
public val ADAPTER: ProtoAdapter = object : ProtoAdapter(
FieldEncoding.LENGTH_DELIMITED,
Value::class,
"type.googleapis.com/xyz.block.ftl.v1.schema.Value",
PROTO_3,
null,
"xyz/block/ftl/v1/schema/schema.proto"
) {
override fun encodedSize(`value`: Value): Int {
var size = value.unknownFields.size
size += StringValue.ADAPTER.encodedSizeWithTag(1, value.stringValue)
size += IntValue.ADAPTER.encodedSizeWithTag(2, value.intValue)
return size
}
override fun encode(writer: ProtoWriter, `value`: Value) {
StringValue.ADAPTER.encodeWithTag(writer, 1, value.stringValue)
IntValue.ADAPTER.encodeWithTag(writer, 2, value.intValue)
writer.writeBytes(value.unknownFields)
}
override fun encode(writer: ReverseProtoWriter, `value`: Value) {
writer.writeBytes(value.unknownFields)
IntValue.ADAPTER.encodeWithTag(writer, 2, value.intValue)
StringValue.ADAPTER.encodeWithTag(writer, 1, value.stringValue)
}
override fun decode(reader: ProtoReader): Value {
var stringValue: StringValue? = null
var intValue: IntValue? = null
val unknownFields = reader.forEachTag { tag ->
when (tag) {
1 -> stringValue = StringValue.ADAPTER.decode(reader)
2 -> intValue = IntValue.ADAPTER.decode(reader)
else -> reader.readUnknownField(tag)
}
}
return Value(
stringValue = stringValue,
intValue = intValue,
unknownFields = unknownFields
)
}
override fun redact(`value`: Value): Value = value.copy(
stringValue = value.stringValue?.let(StringValue.ADAPTER::redact),
intValue = value.intValue?.let(IntValue.ADAPTER::redact),
unknownFields = ByteString.EMPTY
)
}
private const val serialVersionUID: Long = 0L
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy