// // Generated by the protocol buffer compiler. DO NOT EDIT! // source: circuits_v2/data_table/data_table_data.proto // #pragma warning disable 1591, 0612, 3021, 8981 #region Designer generated code using pb = global::Google.Protobuf; using pbc = global::Google.Protobuf.Collections; using pbr = global::Google.Protobuf.Reflection; using scg = global::System.Collections.Generic; namespace CircuitsV2.Protobuf { /// Holder for reflection information generated from circuits_v2/data_table/data_table_data.proto public static partial class DataTableDataReflection { #region Descriptor /// File descriptor for circuits_v2/data_table/data_table_data.proto public static pbr::FileDescriptor Descriptor { get { return descriptor; } } private static pbr::FileDescriptor descriptor; static DataTableDataReflection() { byte[] descriptorData = global::System.Convert.FromBase64String( string.Concat( "CixjaXJjdWl0c192Mi9kYXRhX3RhYmxlL2RhdGFfdGFibGVfZGF0YS5wcm90", "bxILY2lyY3VpdHNfdjIaPmNpcmN1aXRzX3YyL2RhdGFfdGFibGUvZGF0YV90", "YWJsZV9jb2x1bW5fZGVmaW5pdGlvbl9kYXRhLnByb3RvGjNjaXJjdWl0c192", "Mi9kYXRhX3RhYmxlL2RhdGFfdGFibGVfY29sdW1uX2RhdGEucHJvdG8imAEK", "DURhdGFUYWJsZURhdGESDAoEbmFtZRgBIAEoCRJGChJjb2x1bW5fZGVmaW5p", "dGlvbnMYAiADKAsyKi5jaXJjdWl0c192Mi5EYXRhVGFibGVDb2x1bW5EZWZp", "bml0aW9uRGF0YRIxCgdjb2x1bW5zGAMgAygLMiAuY2lyY3VpdHNfdjIuRGF0", "YVRhYmxlQ29sdW1uRGF0YUIWqgITQ2lyY3VpdHNWMi5Qcm90b2J1ZmIGcHJv", "dG8z")); descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, new pbr::FileDescriptor[] { global::CircuitsV2.Protobuf.DataTableColumnDefinitionDataReflection.Descriptor, global::CircuitsV2.Protobuf.DataTableColumnDataReflection.Descriptor, }, new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::CircuitsV2.Protobuf.DataTableData), global::CircuitsV2.Protobuf.DataTableData.Parser, new[]{ "Name", "ColumnDefinitions", "Columns" }, null, null, null, null) })); } #endregion } #region Messages [global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] public sealed partial class DataTableData : pb::IMessage #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE , pb::IBufferMessage #endif { private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new DataTableData()); private pb::UnknownFieldSet _unknownFields; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pb::MessageParser Parser { get { return _parser; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public static pbr::MessageDescriptor Descriptor { get { return global::CircuitsV2.Protobuf.DataTableDataReflection.Descriptor.MessageTypes[0]; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] pbr::MessageDescriptor pb::IMessage.Descriptor { get { return Descriptor; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public DataTableData() { OnConstruction(); } partial void OnConstruction(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public DataTableData(DataTableData other) : this() { name_ = other.name_; columnDefinitions_ = other.columnDefinitions_.Clone(); columns_ = other.columns_.Clone(); _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public DataTableData Clone() { return new DataTableData(this); } /// Field number for the "name" field. public const int NameFieldNumber = 1; private string name_ = ""; [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public string Name { get { return name_; } set { name_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); } } /// Field number for the "column_definitions" field. public const int ColumnDefinitionsFieldNumber = 2; private static readonly pb::FieldCodec _repeated_columnDefinitions_codec = pb::FieldCodec.ForMessage(18, global::CircuitsV2.Protobuf.DataTableColumnDefinitionData.Parser); private readonly pbc::RepeatedField columnDefinitions_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public pbc::RepeatedField ColumnDefinitions { get { return columnDefinitions_; } } /// Field number for the "columns" field. public const int ColumnsFieldNumber = 3; private static readonly pb::FieldCodec _repeated_columns_codec = pb::FieldCodec.ForMessage(26, global::CircuitsV2.Protobuf.DataTableColumnData.Parser); private readonly pbc::RepeatedField columns_ = new pbc::RepeatedField(); [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public pbc::RepeatedField Columns { get { return columns_; } } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override bool Equals(object other) { return Equals(other as DataTableData); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public bool Equals(DataTableData other) { if (ReferenceEquals(other, null)) { return false; } if (ReferenceEquals(other, this)) { return true; } if (Name != other.Name) return false; if(!columnDefinitions_.Equals(other.columnDefinitions_)) return false; if(!columns_.Equals(other.columns_)) return false; return Equals(_unknownFields, other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override int GetHashCode() { int hash = 1; if (Name.Length != 0) hash ^= Name.GetHashCode(); hash ^= columnDefinitions_.GetHashCode(); hash ^= columns_.GetHashCode(); if (_unknownFields != null) { hash ^= _unknownFields.GetHashCode(); } return hash; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public override string ToString() { return pb::JsonFormatter.ToDiagnosticString(this); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public void WriteTo(pb::CodedOutputStream output) { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE output.WriteRawMessage(this); #else if (Name.Length != 0) { output.WriteRawTag(10); output.WriteString(Name); } columnDefinitions_.WriteTo(output, _repeated_columnDefinitions_codec); columns_.WriteTo(output, _repeated_columns_codec); if (_unknownFields != null) { _unknownFields.WriteTo(output); } #endif } #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { if (Name.Length != 0) { output.WriteRawTag(10); output.WriteString(Name); } columnDefinitions_.WriteTo(ref output, _repeated_columnDefinitions_codec); columns_.WriteTo(ref output, _repeated_columns_codec); if (_unknownFields != null) { _unknownFields.WriteTo(ref output); } } #endif [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public int CalculateSize() { int size = 0; if (Name.Length != 0) { size += 1 + pb::CodedOutputStream.ComputeStringSize(Name); } size += columnDefinitions_.CalculateSize(_repeated_columnDefinitions_codec); size += columns_.CalculateSize(_repeated_columns_codec); if (_unknownFields != null) { size += _unknownFields.CalculateSize(); } return size; } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public void MergeFrom(DataTableData other) { if (other == null) { return; } if (other.Name.Length != 0) { Name = other.Name; } columnDefinitions_.Add(other.columnDefinitions_); columns_.Add(other.columns_); _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); } [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] public void MergeFrom(pb::CodedInputStream input) { #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE input.ReadRawMessage(this); #else uint tag; while ((tag = input.ReadTag()) != 0) { if ((tag & 7) == 4) { // Abort on any end group tag. return; } switch(tag) { default: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); break; case 10: { Name = input.ReadString(); break; } case 18: { columnDefinitions_.AddEntriesFrom(input, _repeated_columnDefinitions_codec); break; } case 26: { columns_.AddEntriesFrom(input, _repeated_columns_codec); break; } } } #endif } #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE [global::System.Diagnostics.DebuggerNonUserCodeAttribute] [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) { uint tag; while ((tag = input.ReadTag()) != 0) { if ((tag & 7) == 4) { // Abort on any end group tag. return; } switch(tag) { default: _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); break; case 10: { Name = input.ReadString(); break; } case 18: { columnDefinitions_.AddEntriesFrom(ref input, _repeated_columnDefinitions_codec); break; } case 26: { columns_.AddEntriesFrom(ref input, _repeated_columns_codec); break; } } } } #endif } #endregion } #endregion Designer generated code