All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.media.edge.GeoLocation.kt Maven / Gradle / Ivy

Go to download

KMP package which exports compiled protobuf entities to be used by other repos

There is a newer version: 2.89.0
Show newest version
// Code generated by Wire protocol buffer compiler, do not edit.
// Source: media.edge.GeoLocation in media/client_edge.proto
package media.edge

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`.sanitize
import kotlin.Any
import kotlin.AssertionError
import kotlin.Boolean
import kotlin.Deprecated
import kotlin.DeprecationLevel
import kotlin.Float
import kotlin.Int
import kotlin.Long
import kotlin.Nothing
import kotlin.String
import kotlin.Unit
import okio.ByteString

/**
 * *****************************************************************************************
 * *********************************** Message Requests ************************************
 * *****************************************************************************************
 */
public class GeoLocation(
  @field:WireField(
    tag = 1,
    adapter = "com.squareup.wire.ProtoAdapter#FLOAT",
    label = WireField.Label.OMIT_IDENTITY,
  )
  public val latitude: Float = 0f,
  @field:WireField(
    tag = 2,
    adapter = "com.squareup.wire.ProtoAdapter#FLOAT",
    label = WireField.Label.OMIT_IDENTITY,
  )
  public val longitude: Float = 0f,
  @field:WireField(
    tag = 3,
    adapter = "com.squareup.wire.ProtoAdapter#STRING",
  )
  public val region: String? = null,
  unknownFields: ByteString = ByteString.EMPTY,
) : Message(ADAPTER, unknownFields) {
  @Deprecated(
    message = "Shouldn't be used in Kotlin",
    level = DeprecationLevel.HIDDEN,
  )
  public 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")

  public override fun equals(other: Any?): Boolean {
    if (other === this) return true
    if (other !is GeoLocation) return false
    if (unknownFields != other.unknownFields) return false
    if (latitude != other.latitude) return false
    if (longitude != other.longitude) return false
    if (region != other.region) return false
    return true
  }

  public override fun hashCode(): Int {
    var result = super.hashCode
    if (result == 0) {
      result = unknownFields.hashCode()
      result = result * 37 + latitude.hashCode()
      result = result * 37 + longitude.hashCode()
      result = result * 37 + (region?.hashCode() ?: 0)
      super.hashCode = result
    }
    return result
  }

  public override fun toString(): String {
    val result = mutableListOf()
    result += """latitude=$latitude"""
    result += """longitude=$longitude"""
    if (region != null) result += """region=${sanitize(region)}"""
    return result.joinToString(prefix = "GeoLocation{", separator = ", ", postfix = "}")
  }

  public fun copy(
    latitude: Float = this.latitude,
    longitude: Float = this.longitude,
    region: String? = this.region,
    unknownFields: ByteString = this.unknownFields,
  ): GeoLocation = GeoLocation(latitude, longitude, region, unknownFields)

  public companion object {
    public val ADAPTER: ProtoAdapter = object : ProtoAdapter(
      FieldEncoding.LENGTH_DELIMITED, 
      GeoLocation::class, 
      "type.googleapis.com/media.edge.GeoLocation", 
      PROTO_3, 
      null, 
      "media/client_edge.proto"
    ) {
      public override fun encodedSize(`value`: GeoLocation): Int {
        var size = value.unknownFields.size
        if (!value.latitude.equals(0f)) size += ProtoAdapter.FLOAT.encodedSizeWithTag(1,
            value.latitude)
        if (!value.longitude.equals(0f)) size += ProtoAdapter.FLOAT.encodedSizeWithTag(2,
            value.longitude)
        size += ProtoAdapter.STRING.encodedSizeWithTag(3, value.region)
        return size
      }

      public override fun encode(writer: ProtoWriter, `value`: GeoLocation): Unit {
        if (!value.latitude.equals(0f)) ProtoAdapter.FLOAT.encodeWithTag(writer, 1, value.latitude)
        if (!value.longitude.equals(0f)) ProtoAdapter.FLOAT.encodeWithTag(writer, 2,
            value.longitude)
        ProtoAdapter.STRING.encodeWithTag(writer, 3, value.region)
        writer.writeBytes(value.unknownFields)
      }

      public override fun encode(writer: ReverseProtoWriter, `value`: GeoLocation): Unit {
        writer.writeBytes(value.unknownFields)
        ProtoAdapter.STRING.encodeWithTag(writer, 3, value.region)
        if (!value.longitude.equals(0f)) ProtoAdapter.FLOAT.encodeWithTag(writer, 2,
            value.longitude)
        if (!value.latitude.equals(0f)) ProtoAdapter.FLOAT.encodeWithTag(writer, 1, value.latitude)
      }

      public override fun decode(reader: ProtoReader): GeoLocation {
        var latitude: Float = 0f
        var longitude: Float = 0f
        var region: String? = null
        val unknownFields = reader.forEachTag { tag ->
          when (tag) {
            1 -> latitude = ProtoAdapter.FLOAT.decode(reader)
            2 -> longitude = ProtoAdapter.FLOAT.decode(reader)
            3 -> region = ProtoAdapter.STRING.decode(reader)
            else -> reader.readUnknownField(tag)
          }
        }
        return GeoLocation(
          latitude = latitude,
          longitude = longitude,
          region = region,
          unknownFields = unknownFields
        )
      }

      public override fun redact(`value`: GeoLocation): GeoLocation = value.copy(
        unknownFields = ByteString.EMPTY
      )
    }

    private const val serialVersionUID: Long = 0L
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy