org.yupana.proto.ParameterValue.scala Maven / Gradle / Ivy
The newest version!
// Generated by the Scala Plugin for the Protocol Buffer Compiler.
// Do not edit!
//
// Protofile syntax: PROTO2
package org.yupana.proto
@SerialVersionUID(0L)
final case class ParameterValue(
index: _root_.scala.Int,
value: org.yupana.proto.Value
) extends scalapb.GeneratedMessage with scalapb.Message[ParameterValue] with scalapb.lenses.Updatable[ParameterValue] {
@transient
private[this] var __serializedSizeCachedValue: _root_.scala.Int = 0
private[this] def __computeSerializedValue(): _root_.scala.Int = {
var __size = 0
{
val __value = index
__size += _root_.com.google.protobuf.CodedOutputStream.computeInt32Size(1, __value)
};
{
val __value = value
__size += 1 + _root_.com.google.protobuf.CodedOutputStream.computeUInt32SizeNoTag(__value.serializedSize) + __value.serializedSize
};
__size
}
final override def serializedSize: _root_.scala.Int = {
var read = __serializedSizeCachedValue
if (read == 0) {
read = __computeSerializedValue()
__serializedSizeCachedValue = read
}
read
}
def writeTo(`_output__`: _root_.com.google.protobuf.CodedOutputStream): _root_.scala.Unit = {
{
val __v = index
_output__.writeInt32(1, __v)
};
{
val __v = value
_output__.writeTag(2, 2)
_output__.writeUInt32NoTag(__v.serializedSize)
__v.writeTo(_output__)
};
}
def mergeFrom(`_input__`: _root_.com.google.protobuf.CodedInputStream): org.yupana.proto.ParameterValue = {
var __index = this.index
var __value = this.value
var __requiredFields0: _root_.scala.Long = 0x3L
var _done__ = false
while (!_done__) {
val _tag__ = _input__.readTag()
_tag__ match {
case 0 => _done__ = true
case 8 =>
__index = _input__.readInt32()
__requiredFields0 &= 0xfffffffffffffffeL
case 18 =>
__value = _root_.scalapb.LiteParser.readMessage(_input__, __value)
__requiredFields0 &= 0xfffffffffffffffdL
case tag => _input__.skipField(tag)
}
}
if (__requiredFields0 != 0L) { throw new _root_.com.google.protobuf.InvalidProtocolBufferException("Message missing required fields.") }
org.yupana.proto.ParameterValue(
index = __index,
value = __value
)
}
def withIndex(__v: _root_.scala.Int): ParameterValue = copy(index = __v)
def withValue(__v: org.yupana.proto.Value): ParameterValue = copy(value = __v)
def getFieldByNumber(__fieldNumber: _root_.scala.Int): _root_.scala.Any = {
(__fieldNumber: @_root_.scala.unchecked) match {
case 1 => index
case 2 => value
}
}
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 => _root_.scalapb.descriptors.PInt(index)
case 2 => value.toPMessage
}
}
def toProtoString: _root_.scala.Predef.String = _root_.scalapb.TextFormat.printToUnicodeString(this)
def companion = org.yupana.proto.ParameterValue
}
object ParameterValue extends scalapb.GeneratedMessageCompanion[org.yupana.proto.ParameterValue] {
implicit def messageCompanion: scalapb.GeneratedMessageCompanion[org.yupana.proto.ParameterValue] = this
def fromFieldsMap(__fieldsMap: scala.collection.immutable.Map[_root_.com.google.protobuf.Descriptors.FieldDescriptor, _root_.scala.Any]): org.yupana.proto.ParameterValue = {
_root_.scala.Predef.require(__fieldsMap.keys.forall(_.getContainingType() == javaDescriptor), "FieldDescriptor does not match message type.")
val __fields = javaDescriptor.getFields
org.yupana.proto.ParameterValue(
__fieldsMap(__fields.get(0)).asInstanceOf[_root_.scala.Int],
__fieldsMap(__fields.get(1)).asInstanceOf[org.yupana.proto.Value]
)
}
implicit def messageReads: _root_.scalapb.descriptors.Reads[org.yupana.proto.ParameterValue] = _root_.scalapb.descriptors.Reads{
case _root_.scalapb.descriptors.PMessage(__fieldsMap) =>
_root_.scala.Predef.require(__fieldsMap.keys.forall(_.containingMessage == scalaDescriptor), "FieldDescriptor does not match message type.")
org.yupana.proto.ParameterValue(
__fieldsMap.get(scalaDescriptor.findFieldByNumber(1).get).get.as[_root_.scala.Int],
__fieldsMap.get(scalaDescriptor.findFieldByNumber(2).get).get.as[org.yupana.proto.Value]
)
case _ => throw new RuntimeException("Expected PMessage")
}
def javaDescriptor: _root_.com.google.protobuf.Descriptors.Descriptor = ProtoProto.javaDescriptor.getMessageTypes.get(6)
def scalaDescriptor: _root_.scalapb.descriptors.Descriptor = ProtoProto.scalaDescriptor.messages(6)
def messageCompanionForFieldNumber(__number: _root_.scala.Int): _root_.scalapb.GeneratedMessageCompanion[_] = {
var __out: _root_.scalapb.GeneratedMessageCompanion[_] = null
(__number: @_root_.scala.unchecked) match {
case 2 => __out = org.yupana.proto.Value
}
__out
}
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 = org.yupana.proto.ParameterValue(
index = 0,
value = org.yupana.proto.Value.defaultInstance
)
implicit class ParameterValueLens[UpperPB](_l: _root_.scalapb.lenses.Lens[UpperPB, org.yupana.proto.ParameterValue]) extends _root_.scalapb.lenses.ObjectLens[UpperPB, org.yupana.proto.ParameterValue](_l) {
def index: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Int] = field(_.index)((c_, f_) => c_.copy(index = f_))
def value: _root_.scalapb.lenses.Lens[UpperPB, org.yupana.proto.Value] = field(_.value)((c_, f_) => c_.copy(value = f_))
}
final val INDEX_FIELD_NUMBER = 1
final val VALUE_FIELD_NUMBER = 2
def of(
index: _root_.scala.Int,
value: org.yupana.proto.Value
): _root_.org.yupana.proto.ParameterValue = _root_.org.yupana.proto.ParameterValue(
index,
value
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy