xyz.block.ftl.v1.schema.Enum.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ftl-runtime Show documentation
Show all versions of ftl-runtime Show documentation
Towards a 𝝺-calculus for large-scale systems
// Code generated by Wire protocol buffer compiler, do not edit.
// Source: xyz.block.ftl.v1.schema.Enum 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`.immutableCopyOf
import com.squareup.wire.`internal`.redactElements
import com.squareup.wire.`internal`.sanitize
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 kotlin.collections.List
import okio.ByteString
public class Enum(
@field:WireField(
tag = 1,
adapter = "xyz.block.ftl.v1.schema.Position#ADAPTER",
schemaIndex = 0,
)
public val pos: Position? = null,
comments: List = emptyList(),
@field:WireField(
tag = 3,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
label = WireField.Label.OMIT_IDENTITY,
schemaIndex = 2,
)
public val name: String = "",
@field:WireField(
tag = 4,
adapter = "xyz.block.ftl.v1.schema.Type#ADAPTER",
label = WireField.Label.OMIT_IDENTITY,
schemaIndex = 3,
)
public val type: Type? = null,
variants: List = emptyList(),
unknownFields: ByteString = ByteString.EMPTY,
) : Message(ADAPTER, unknownFields) {
@field:WireField(
tag = 2,
adapter = "com.squareup.wire.ProtoAdapter#STRING",
label = WireField.Label.REPEATED,
schemaIndex = 1,
)
public val comments: List = immutableCopyOf("comments", comments)
@field:WireField(
tag = 5,
adapter = "xyz.block.ftl.v1.schema.EnumVariant#ADAPTER",
label = WireField.Label.REPEATED,
schemaIndex = 4,
)
public val variants: List = immutableCopyOf("variants", variants)
@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 Enum) return false
if (unknownFields != other.unknownFields) return false
if (pos != other.pos) return false
if (comments != other.comments) return false
if (name != other.name) return false
if (type != other.type) return false
if (variants != other.variants) return false
return true
}
override fun hashCode(): Int {
var result = super.hashCode
if (result == 0) {
result = unknownFields.hashCode()
result = result * 37 + (pos?.hashCode() ?: 0)
result = result * 37 + comments.hashCode()
result = result * 37 + name.hashCode()
result = result * 37 + (type?.hashCode() ?: 0)
result = result * 37 + variants.hashCode()
super.hashCode = result
}
return result
}
override fun toString(): String {
val result = mutableListOf()
if (pos != null) result += """pos=$pos"""
if (comments.isNotEmpty()) result += """comments=${sanitize(comments)}"""
result += """name=${sanitize(name)}"""
if (type != null) result += """type=$type"""
if (variants.isNotEmpty()) result += """variants=$variants"""
return result.joinToString(prefix = "Enum{", separator = ", ", postfix = "}")
}
public fun copy(
pos: Position? = this.pos,
comments: List = this.comments,
name: String = this.name,
type: Type? = this.type,
variants: List = this.variants,
unknownFields: ByteString = this.unknownFields,
): Enum = Enum(pos, comments, name, type, variants, unknownFields)
public companion object {
@JvmField
public val ADAPTER: ProtoAdapter = object : ProtoAdapter(
FieldEncoding.LENGTH_DELIMITED,
Enum::class,
"type.googleapis.com/xyz.block.ftl.v1.schema.Enum",
PROTO_3,
null,
"xyz/block/ftl/v1/schema/schema.proto"
) {
override fun encodedSize(`value`: Enum): Int {
var size = value.unknownFields.size
size += Position.ADAPTER.encodedSizeWithTag(1, value.pos)
size += ProtoAdapter.STRING.asRepeated().encodedSizeWithTag(2, value.comments)
if (value.name != "") size += ProtoAdapter.STRING.encodedSizeWithTag(3, value.name)
if (value.type != null) size += Type.ADAPTER.encodedSizeWithTag(4, value.type)
size += EnumVariant.ADAPTER.asRepeated().encodedSizeWithTag(5, value.variants)
return size
}
override fun encode(writer: ProtoWriter, `value`: Enum) {
Position.ADAPTER.encodeWithTag(writer, 1, value.pos)
ProtoAdapter.STRING.asRepeated().encodeWithTag(writer, 2, value.comments)
if (value.name != "") ProtoAdapter.STRING.encodeWithTag(writer, 3, value.name)
if (value.type != null) Type.ADAPTER.encodeWithTag(writer, 4, value.type)
EnumVariant.ADAPTER.asRepeated().encodeWithTag(writer, 5, value.variants)
writer.writeBytes(value.unknownFields)
}
override fun encode(writer: ReverseProtoWriter, `value`: Enum) {
writer.writeBytes(value.unknownFields)
EnumVariant.ADAPTER.asRepeated().encodeWithTag(writer, 5, value.variants)
if (value.type != null) Type.ADAPTER.encodeWithTag(writer, 4, value.type)
if (value.name != "") ProtoAdapter.STRING.encodeWithTag(writer, 3, value.name)
ProtoAdapter.STRING.asRepeated().encodeWithTag(writer, 2, value.comments)
Position.ADAPTER.encodeWithTag(writer, 1, value.pos)
}
override fun decode(reader: ProtoReader): Enum {
var pos: Position? = null
val comments = mutableListOf()
var name: String = ""
var type: Type? = null
val variants = mutableListOf()
val unknownFields = reader.forEachTag { tag ->
when (tag) {
1 -> pos = Position.ADAPTER.decode(reader)
2 -> comments.add(ProtoAdapter.STRING.decode(reader))
3 -> name = ProtoAdapter.STRING.decode(reader)
4 -> type = Type.ADAPTER.decode(reader)
5 -> variants.add(EnumVariant.ADAPTER.decode(reader))
else -> reader.readUnknownField(tag)
}
}
return Enum(
pos = pos,
comments = comments,
name = name,
type = type,
variants = variants,
unknownFields = unknownFields
)
}
override fun redact(`value`: Enum): Enum = value.copy(
pos = value.pos?.let(Position.ADAPTER::redact),
type = value.type?.let(Type.ADAPTER::redact),
variants = value.variants.redactElements(EnumVariant.ADAPTER),
unknownFields = ByteString.EMPTY
)
}
private const val serialVersionUID: Long = 0L
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy