Example #1
0
 public void MergeFrom(Type other)
 {
     if (other == null)
     {
         return;
     }
     if (other.Code != global::Google.Cloud.Spanner.V1.TypeCode.Unspecified)
     {
         Code = other.Code;
     }
     if (other.arrayElementType_ != null)
     {
         if (arrayElementType_ == null)
         {
             ArrayElementType = new global::Google.Cloud.Spanner.V1.Type();
         }
         ArrayElementType.MergeFrom(other.ArrayElementType);
     }
     if (other.structType_ != null)
     {
         if (structType_ == null)
         {
             StructType = new global::Google.Cloud.Spanner.V1.StructType();
         }
         StructType.MergeFrom(other.StructType);
     }
     if (other.TypeAnnotation != global::Google.Cloud.Spanner.V1.TypeAnnotationCode.Unspecified)
     {
         TypeAnnotation = other.TypeAnnotation;
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }
Example #2
0
        public void MergeFrom(pb::CodedInputStream input)
        {
    #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
            input.ReadRawMessage(this);
    #else
            uint tag;
            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
                    break;

                case 8: {
                    Code = (global::Google.Cloud.Spanner.V1.TypeCode)input.ReadEnum();
                    break;
                }

                case 18: {
                    if (arrayElementType_ == null)
                    {
                        ArrayElementType = new global::Google.Cloud.Spanner.V1.Type();
                    }
                    input.ReadMessage(ArrayElementType);
                    break;
                }

                case 26: {
                    if (structType_ == null)
                    {
                        StructType = new global::Google.Cloud.Spanner.V1.StructType();
                    }
                    input.ReadMessage(StructType);
                    break;
                }

                case 32: {
                    TypeAnnotation = (global::Google.Cloud.Spanner.V1.TypeAnnotationCode)input.ReadEnum();
                    break;
                }
                }
            }
    #endif
        }
Example #3
0
        void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input)
        {
            uint tag;

            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
                    break;

                case 8: {
                    Code = (global::Google.Cloud.Spanner.V1.TypeCode)input.ReadEnum();
                    break;
                }

                case 18: {
                    if (arrayElementType_ == null)
                    {
                        ArrayElementType = new global::Google.Cloud.Spanner.V1.Type();
                    }
                    input.ReadMessage(ArrayElementType);
                    break;
                }

                case 26: {
                    if (structType_ == null)
                    {
                        StructType = new global::Google.Cloud.Spanner.V1.StructType();
                    }
                    input.ReadMessage(StructType);
                    break;
                }

                case 32: {
                    TypeAnnotation = (global::Google.Cloud.Spanner.V1.TypeAnnotationCode)input.ReadEnum();
                    break;
                }
                }
            }
        }