org.yupana.proto.ResultStatistics.scala Maven / Gradle / Ivy
// 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 ResultStatistics(
seconds: _root_.scala.Int,
rowCount: _root_.scala.Int
) extends scalapb.GeneratedMessage with scalapb.Message[ResultStatistics] with scalapb.lenses.Updatable[ResultStatistics] {
@transient
private[this] var __serializedSizeCachedValue: _root_.scala.Int = 0
private[this] def __computeSerializedValue(): _root_.scala.Int = {
var __size = 0
{
val __value = seconds
__size += _root_.com.google.protobuf.CodedOutputStream.computeInt32Size(1, __value)
};
{
val __value = rowCount
__size += _root_.com.google.protobuf.CodedOutputStream.computeInt32Size(2, __value)
};
__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 = seconds
_output__.writeInt32(1, __v)
};
{
val __v = rowCount
_output__.writeInt32(2, __v)
};
}
def mergeFrom(`_input__`: _root_.com.google.protobuf.CodedInputStream): org.yupana.proto.ResultStatistics = {
var __seconds = this.seconds
var __rowCount = this.rowCount
var __requiredFields0: _root_.scala.Long = 0x3L
var _done__ = false
while (!_done__) {
val _tag__ = _input__.readTag()
_tag__ match {
case 0 => _done__ = true
case 8 =>
__seconds = _input__.readInt32()
__requiredFields0 &= 0xfffffffffffffffeL
case 16 =>
__rowCount = _input__.readInt32()
__requiredFields0 &= 0xfffffffffffffffdL
case tag => _input__.skipField(tag)
}
}
if (__requiredFields0 != 0L) { throw new _root_.com.google.protobuf.InvalidProtocolBufferException("Message missing required fields.") }
org.yupana.proto.ResultStatistics(
seconds = __seconds,
rowCount = __rowCount
)
}
def withSeconds(__v: _root_.scala.Int): ResultStatistics = copy(seconds = __v)
def withRowCount(__v: _root_.scala.Int): ResultStatistics = copy(rowCount = __v)
def getFieldByNumber(__fieldNumber: _root_.scala.Int): _root_.scala.Any = {
(__fieldNumber: @_root_.scala.unchecked) match {
case 1 => seconds
case 2 => rowCount
}
}
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(seconds)
case 2 => _root_.scalapb.descriptors.PInt(rowCount)
}
}
def toProtoString: _root_.scala.Predef.String = _root_.scalapb.TextFormat.printToUnicodeString(this)
def companion = org.yupana.proto.ResultStatistics
}
object ResultStatistics extends scalapb.GeneratedMessageCompanion[org.yupana.proto.ResultStatistics] {
implicit def messageCompanion: scalapb.GeneratedMessageCompanion[org.yupana.proto.ResultStatistics] = this
def fromFieldsMap(__fieldsMap: scala.collection.immutable.Map[_root_.com.google.protobuf.Descriptors.FieldDescriptor, _root_.scala.Any]): org.yupana.proto.ResultStatistics = {
_root_.scala.Predef.require(__fieldsMap.keys.forall(_.getContainingType() == javaDescriptor), "FieldDescriptor does not match message type.")
val __fields = javaDescriptor.getFields
org.yupana.proto.ResultStatistics(
__fieldsMap(__fields.get(0)).asInstanceOf[_root_.scala.Int],
__fieldsMap(__fields.get(1)).asInstanceOf[_root_.scala.Int]
)
}
implicit def messageReads: _root_.scalapb.descriptors.Reads[org.yupana.proto.ResultStatistics] = _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.ResultStatistics(
__fieldsMap.get(scalaDescriptor.findFieldByNumber(1).get).get.as[_root_.scala.Int],
__fieldsMap.get(scalaDescriptor.findFieldByNumber(2).get).get.as[_root_.scala.Int]
)
case _ => throw new RuntimeException("Expected PMessage")
}
def javaDescriptor: _root_.com.google.protobuf.Descriptors.Descriptor = ProtoProto.javaDescriptor.getMessageTypes.get(11)
def scalaDescriptor: _root_.scalapb.descriptors.Descriptor = ProtoProto.scalaDescriptor.messages(11)
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 = org.yupana.proto.ResultStatistics(
seconds = 0,
rowCount = 0
)
implicit class ResultStatisticsLens[UpperPB](_l: _root_.scalapb.lenses.Lens[UpperPB, org.yupana.proto.ResultStatistics]) extends _root_.scalapb.lenses.ObjectLens[UpperPB, org.yupana.proto.ResultStatistics](_l) {
def seconds: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Int] = field(_.seconds)((c_, f_) => c_.copy(seconds = f_))
def rowCount: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Int] = field(_.rowCount)((c_, f_) => c_.copy(rowCount = f_))
}
final val SECONDS_FIELD_NUMBER = 1
final val ROWCOUNT_FIELD_NUMBER = 2
def of(
seconds: _root_.scala.Int,
rowCount: _root_.scala.Int
): _root_.org.yupana.proto.ResultStatistics = _root_.org.yupana.proto.ResultStatistics(
seconds,
rowCount
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy