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

com.wavesplatform.protobuf.transaction.Recipient.scala Maven / Gradle / Ivy

The newest version!
// Generated by the Scala Plugin for the Protocol Buffer Compiler.
// Do not edit!
//
// Protofile syntax: PROTO3

package com.wavesplatform.protobuf.transaction

@SerialVersionUID(0L)
final case class Recipient(
    recipient: com.wavesplatform.protobuf.transaction.Recipient.Recipient = com.wavesplatform.protobuf.transaction.Recipient.Recipient.Empty,
    unknownFields: _root_.scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty
    ) extends scalapb.GeneratedMessage with scalapb.lenses.Updatable[Recipient] {
    @transient
    private[this] var __serializedSizeMemoized: _root_.scala.Int = 0
    private[this] def __computeSerializedSize(): _root_.scala.Int = {
      var __size = 0
      if (recipient.publicKeyHash.isDefined) {
        val __value = recipient.publicKeyHash.get
        __size += _root_.com.google.protobuf.CodedOutputStream.computeBytesSize(1, __value)
      };
      if (recipient.alias.isDefined) {
        val __value = recipient.alias.get
        __size += _root_.com.google.protobuf.CodedOutputStream.computeStringSize(2, __value)
      };
      __size += unknownFields.serializedSize
      __size
    }
    override def serializedSize: _root_.scala.Int = {
      var __size = __serializedSizeMemoized
      if (__size == 0) {
        __size = __computeSerializedSize() + 1
        __serializedSizeMemoized = __size
      }
      __size - 1
      
    }
    def writeTo(`_output__`: _root_.com.google.protobuf.CodedOutputStream): _root_.scala.Unit = {
      recipient.publicKeyHash.foreach { __v =>
        val __m = __v
        _output__.writeBytes(1, __m)
      };
      recipient.alias.foreach { __v =>
        val __m = __v
        _output__.writeString(2, __m)
      };
      unknownFields.writeTo(_output__)
    }
    def getPublicKeyHash: _root_.com.google.protobuf.ByteString = recipient.publicKeyHash.getOrElse(_root_.com.google.protobuf.ByteString.EMPTY)
    def withPublicKeyHash(__v: _root_.com.google.protobuf.ByteString): Recipient = copy(recipient = com.wavesplatform.protobuf.transaction.Recipient.Recipient.PublicKeyHash(__v))
    def getAlias: _root_.scala.Predef.String = recipient.alias.getOrElse("")
    def withAlias(__v: _root_.scala.Predef.String): Recipient = copy(recipient = com.wavesplatform.protobuf.transaction.Recipient.Recipient.Alias(__v))
    def clearRecipient: Recipient = copy(recipient = com.wavesplatform.protobuf.transaction.Recipient.Recipient.Empty)
    def withRecipient(__v: com.wavesplatform.protobuf.transaction.Recipient.Recipient): Recipient = copy(recipient = __v)
    def withUnknownFields(__v: _root_.scalapb.UnknownFieldSet) = copy(unknownFields = __v)
    def discardUnknownFields = copy(unknownFields = _root_.scalapb.UnknownFieldSet.empty)
    def getFieldByNumber(__fieldNumber: _root_.scala.Int): _root_.scala.Any = {
      (__fieldNumber: @_root_.scala.unchecked) match {
        case 1 => recipient.publicKeyHash.orNull
        case 2 => recipient.alias.orNull
      }
    }
    def getField(__field: _root_.scalapb.descriptors.FieldDescriptor): _root_.scalapb.descriptors.PValue = {
      _root_.scala.Predef.require(__field.containingMessage eq companion.scalaDescriptor)
      (__field.number: @_root_.scala.unchecked) match {
        case 1 => recipient.publicKeyHash.map(_root_.scalapb.descriptors.PByteString(_)).getOrElse(_root_.scalapb.descriptors.PEmpty)
        case 2 => recipient.alias.map(_root_.scalapb.descriptors.PString(_)).getOrElse(_root_.scalapb.descriptors.PEmpty)
      }
    }
    def toProtoString: _root_.scala.Predef.String = _root_.scalapb.TextFormat.printToUnicodeString(this)
    def companion: com.wavesplatform.protobuf.transaction.Recipient.type = com.wavesplatform.protobuf.transaction.Recipient
    // @@protoc_insertion_point(GeneratedMessage[waves.Recipient])
}

object Recipient extends scalapb.GeneratedMessageCompanion[com.wavesplatform.protobuf.transaction.Recipient] {
  implicit def messageCompanion: scalapb.GeneratedMessageCompanion[com.wavesplatform.protobuf.transaction.Recipient] = this
  def parseFrom(`_input__`: _root_.com.google.protobuf.CodedInputStream): com.wavesplatform.protobuf.transaction.Recipient = {
    var __recipient: com.wavesplatform.protobuf.transaction.Recipient.Recipient = com.wavesplatform.protobuf.transaction.Recipient.Recipient.Empty
    var `_unknownFields__`: _root_.scalapb.UnknownFieldSet.Builder = null
    var _done__ = false
    while (!_done__) {
      val _tag__ = _input__.readTag()
      _tag__ match {
        case 0 => _done__ = true
        case 10 =>
          __recipient = com.wavesplatform.protobuf.transaction.Recipient.Recipient.PublicKeyHash(_input__.readBytes())
        case 18 =>
          __recipient = com.wavesplatform.protobuf.transaction.Recipient.Recipient.Alias(_input__.readStringRequireUtf8())
        case tag =>
          if (_unknownFields__ == null) {
            _unknownFields__ = new _root_.scalapb.UnknownFieldSet.Builder()
          }
          _unknownFields__.parseField(tag, _input__)
      }
    }
    com.wavesplatform.protobuf.transaction.Recipient(
        recipient = __recipient,
        unknownFields = if (_unknownFields__ == null) _root_.scalapb.UnknownFieldSet.empty else _unknownFields__.result()
    )
  }
  implicit def messageReads: _root_.scalapb.descriptors.Reads[com.wavesplatform.protobuf.transaction.Recipient] = _root_.scalapb.descriptors.Reads{
    case _root_.scalapb.descriptors.PMessage(__fieldsMap) =>
      _root_.scala.Predef.require(__fieldsMap.keys.forall(_.containingMessage eq scalaDescriptor), "FieldDescriptor does not match message type.")
      com.wavesplatform.protobuf.transaction.Recipient(
        recipient = __fieldsMap.get(scalaDescriptor.findFieldByNumber(1).get).flatMap(_.as[_root_.scala.Option[_root_.com.google.protobuf.ByteString]]).map(com.wavesplatform.protobuf.transaction.Recipient.Recipient.PublicKeyHash(_))
            .orElse[com.wavesplatform.protobuf.transaction.Recipient.Recipient](__fieldsMap.get(scalaDescriptor.findFieldByNumber(2).get).flatMap(_.as[_root_.scala.Option[_root_.scala.Predef.String]]).map(com.wavesplatform.protobuf.transaction.Recipient.Recipient.Alias(_)))
            .getOrElse(com.wavesplatform.protobuf.transaction.Recipient.Recipient.Empty)
      )
    case _ => throw new RuntimeException("Expected PMessage")
  }
  def javaDescriptor: _root_.com.google.protobuf.Descriptors.Descriptor = RecipientProto.javaDescriptor.getMessageTypes().get(0)
  def scalaDescriptor: _root_.scalapb.descriptors.Descriptor = RecipientProto.scalaDescriptor.messages(0)
  def messageCompanionForFieldNumber(__number: _root_.scala.Int): _root_.scalapb.GeneratedMessageCompanion[_] = throw new MatchError(__number)
  lazy val nestedMessagesCompanions: Seq[_root_.scalapb.GeneratedMessageCompanion[_ <: _root_.scalapb.GeneratedMessage]] = Seq.empty
  def enumCompanionForFieldNumber(__fieldNumber: _root_.scala.Int): _root_.scalapb.GeneratedEnumCompanion[_] = throw new MatchError(__fieldNumber)
  lazy val defaultInstance = com.wavesplatform.protobuf.transaction.Recipient(
    recipient = com.wavesplatform.protobuf.transaction.Recipient.Recipient.Empty
  )
  sealed trait Recipient extends _root_.scalapb.GeneratedOneof {
    def isEmpty: _root_.scala.Boolean = false
    def isDefined: _root_.scala.Boolean = true
    def isPublicKeyHash: _root_.scala.Boolean = false
    def isAlias: _root_.scala.Boolean = false
    def publicKeyHash: _root_.scala.Option[_root_.com.google.protobuf.ByteString] = _root_.scala.None
    def alias: _root_.scala.Option[_root_.scala.Predef.String] = _root_.scala.None
  }
  object Recipient {
    @SerialVersionUID(0L)
    case object Empty extends com.wavesplatform.protobuf.transaction.Recipient.Recipient {
      type ValueType = _root_.scala.Nothing
      override def isEmpty: _root_.scala.Boolean = true
      override def isDefined: _root_.scala.Boolean = false
      override def number: _root_.scala.Int = 0
      override def value: _root_.scala.Nothing = throw new java.util.NoSuchElementException("Empty.value")
    }
  
    @SerialVersionUID(0L)
    final case class PublicKeyHash(value: _root_.com.google.protobuf.ByteString) extends com.wavesplatform.protobuf.transaction.Recipient.Recipient {
      type ValueType = _root_.com.google.protobuf.ByteString
      override def isPublicKeyHash: _root_.scala.Boolean = true
      override def publicKeyHash: _root_.scala.Option[_root_.com.google.protobuf.ByteString] = Some(value)
      override def number: _root_.scala.Int = 1
    }
    @SerialVersionUID(0L)
    final case class Alias(value: _root_.scala.Predef.String) extends com.wavesplatform.protobuf.transaction.Recipient.Recipient {
      type ValueType = _root_.scala.Predef.String
      override def isAlias: _root_.scala.Boolean = true
      override def alias: _root_.scala.Option[_root_.scala.Predef.String] = Some(value)
      override def number: _root_.scala.Int = 2
    }
  }
  implicit class RecipientLens[UpperPB](_l: _root_.scalapb.lenses.Lens[UpperPB, com.wavesplatform.protobuf.transaction.Recipient]) extends _root_.scalapb.lenses.ObjectLens[UpperPB, com.wavesplatform.protobuf.transaction.Recipient](_l) {
    def publicKeyHash: _root_.scalapb.lenses.Lens[UpperPB, _root_.com.google.protobuf.ByteString] = field(_.getPublicKeyHash)((c_, f_) => c_.copy(recipient = com.wavesplatform.protobuf.transaction.Recipient.Recipient.PublicKeyHash(f_)))
    def alias: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Predef.String] = field(_.getAlias)((c_, f_) => c_.copy(recipient = com.wavesplatform.protobuf.transaction.Recipient.Recipient.Alias(f_)))
    def recipient: _root_.scalapb.lenses.Lens[UpperPB, com.wavesplatform.protobuf.transaction.Recipient.Recipient] = field(_.recipient)((c_, f_) => c_.copy(recipient = f_))
  }
  final val PUBLIC_KEY_HASH_FIELD_NUMBER = 1
  final val ALIAS_FIELD_NUMBER = 2
  def of(
    recipient: com.wavesplatform.protobuf.transaction.Recipient.Recipient
  ): _root_.com.wavesplatform.protobuf.transaction.Recipient = _root_.com.wavesplatform.protobuf.transaction.Recipient(
    recipient
  )
  // @@protoc_insertion_point(GeneratedMessageCompanion[waves.Recipient])
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy