// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: PumpStatus.proto
#pragma warning disable 1591, 0612, 3021
#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 Tango.PMR.MachineStatus {
/// Holder for reflection information generated from PumpStatus.proto
public static partial class PumpStatusReflection {
#region Descriptor
/// File descriptor for PumpStatus.proto
public static pbr::FileDescriptor Descriptor {
get { return descriptor; }
}
private static pbr::FileDescriptor descriptor;
static PumpStatusReflection() {
byte[] descriptorData = global::System.Convert.FromBase64String(
string.Concat(
"ChBQdW1wU3RhdHVzLnByb3RvEhdUYW5nby5QTVIuTWFjaGluZVN0YXR1cxoO",
"UHVtcFR5cGUucHJvdG8aD1B1bXBTdGF0ZS5wcm90byKRAQoKUHVtcFN0YXR1",
"cxIvCgRUeXBlGAEgASgOMiEuVGFuZ28uUE1SLk1hY2hpbmVTdGF0dXMuUHVt",
"cFR5cGUSDQoFSW5kZXgYAiABKAUSEAoIQ2FwYWNpdHkYAyABKAMSMQoFU3Rh",
"dGUYBCABKA4yIi5UYW5nby5QTVIuTWFjaGluZVN0YXR1cy5QdW1wU3RhdGVC",
"IwohY29tLnR3aW5lLnRhbmdvLnBtci5tYWNoaW5lc3RhdHVzYgZwcm90bzM="));
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
new pbr::FileDescriptor[] { global::Tango.PMR.MachineStatus.PumpTypeReflection.Descriptor, global::Tango.PMR.MachineStatus.PumpStateReflection.Descriptor, },
new pbr::GeneratedClrTypeInfo(null, new pbr::GeneratedClrTypeInfo[] {
new pbr::GeneratedClrTypeInfo(typeof(global::Tango.PMR.MachineStatus.PumpStatus), global::Tango.PMR.MachineStatus.PumpStatus.Parser, new[]{ "Type", "Index", "Capacity", "State" }, null, null, null)
}));
}
#endregion
}
#region Messages
public sealed partial class PumpStatus : pb::IMessage {
private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new PumpStatus());
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public static pb::MessageParser Parser { get { return _parser; } }
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public static pbr::MessageDescriptor Descriptor {
get { return global::Tango.PMR.MachineStatus.PumpStatusReflection.Descriptor.MessageTypes[0]; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
pbr::MessageDescriptor pb::IMessage.Descriptor {
get { return Descriptor; }
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public PumpStatus() {
OnConstruction();
}
partial void OnConstruction();
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public PumpStatus(PumpStatus other) : this() {
type_ = other.type_;
index_ = other.index_;
capacity_ = other.capacity_;
state_ = other.state_;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public PumpStatus Clone() {
return new PumpStatus(this);
}
/// Field number for the "Type" field.
public const int TypeFieldNumber = 1;
private global::Tango.PMR.MachineStatus.PumpType type_ = 0;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public global::Tango.PMR.MachineStatus.PumpType Type {
get { return type_; }
set {
type_ = value;
}
}
/// Field number for the "Index" field.
public const int IndexFieldNumber = 2;
private int index_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public int Index {
get { return index_; }
set {
index_ = value;
}
}
/// Field number for the "Capacity" field.
public const int CapacityFieldNumber = 3;
private long capacity_;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public long Capacity {
get { return capacity_; }
set {
capacity_ = value;
}
}
/// Field number for the "State" field.
public const int StateFieldNumber = 4;
private global::Tango.PMR.MachineStatus.PumpState state_ = 0;
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public global::Tango.PMR.MachineStatus.PumpState State {
get { return state_; }
set {
state_ = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public override bool Equals(object other) {
return Equals(other as PumpStatus);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public bool Equals(PumpStatus other) {
if (ReferenceEquals(other, null)) {
return false;
}
if (ReferenceEquals(other, this)) {
return true;
}
if (Type != other.Type) return false;
if (Index != other.Index) return false;
if (Capacity != other.Capacity) return false;
if (State != other.State) return false;
return true;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public override int GetHashCode() {
int hash = 1;
if (Type != 0) hash ^= Type.GetHashCode();
if (Index != 0) hash ^= Index.GetHashCode();
if (Capacity != 0L) hash ^= Capacity.GetHashCode();
if (State != 0) hash ^= State.GetHashCode();
return hash;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public override string ToString() {
return pb::JsonFormatter.ToDiagnosticString(this);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public void WriteTo(pb::CodedOutputStream output) {
if (Type != 0) {
output.WriteRawTag(8);
output.WriteEnum((int) Type);
}
if (Index != 0) {
output.WriteRawTag(16);
output.WriteInt32(Index);
}
if (Capacity != 0L) {
output.WriteRawTag(24);
output.WriteInt64(Capacity);
}
if (State != 0) {
output.WriteRawTag(32);
output.WriteEnum((int) State);
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public int CalculateSize() {
int size = 0;
if (Type != 0) {
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) Type);
}
if (Index != 0) {
size += 1 + pb::CodedOutputStream.ComputeInt32Size(Index);
}
if (Capacity != 0L) {
size += 1 + pb::CodedOutputStream.ComputeInt64Size(Capacity);
}
if (State != 0) {
size += 1 + pb::CodedOutputStream.ComputeEnumSize((int) State);
}
return size;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public void MergeFrom(PumpStatus other) {
if (other == null) {
return;
}
if (other.Type != 0) {
Type = other.Type;
}
if (other.Index != 0) {
Index = other.Index;
}
if (other.Capacity != 0L) {
Capacity = other.Capacity;
}
if (other.State != 0) {
State = other.State;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
public void MergeFrom(pb::CodedInputStream input) {
uint tag;
while ((tag = input.ReadTag()) != 0) {
switch(tag) {
default:
input.SkipLastField();
break;
case 8: {
type_ = (global::Tango.PMR.MachineStatus.PumpType) input.ReadEnum();
break;
}
case 16: {
Index = input.ReadInt32();
break;
}
case 24: {
Capacity = input.ReadInt64();
break;
}
case 32: {
state_ = (global::Tango.PMR.MachineStatus.PumpState) input.ReadEnum();
break;
}
}
}
}
}
#endregion
}
#endregion Designer generated code