All Downloads are FREE. Search and download functionalities are using the official Maven repository.

POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass Maven / Gradle / Ivy

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: POGOProtos/Data/Telemetry/RpcSocketResponseTime.proto

package POGOProtos.Data.Telemetry;

public final class RpcSocketResponseTimeOuterClass {
  private RpcSocketResponseTimeOuterClass() {}
  public static void registerAllExtensions(
      com.google.protobuf.ExtensionRegistryLite registry) {
  }

  public static void registerAllExtensions(
      com.google.protobuf.ExtensionRegistry registry) {
    registerAllExtensions(
        (com.google.protobuf.ExtensionRegistryLite) registry);
  }
  public interface RpcSocketResponseTimeOrBuilder extends
      // @@protoc_insertion_point(interface_extends:POGOProtos.Data.Telemetry.RpcSocketResponseTime)
      com.google.protobuf.MessageOrBuilder {

    /**
     * uint64 request_id = 1;
     */
    long getRequestId();

    /**
     * string probe_id = 2;
     */
    java.lang.String getProbeId();
    /**
     * string probe_id = 2;
     */
    com.google.protobuf.ByteString
        getProbeIdBytes();

    /**
     * float response_time = 3;
     */
    float getResponseTime();

    /**
     * bool side_channel = 4;
     */
    boolean getSideChannel();

    /**
     * bool ad_hoc = 5;
     */
    boolean getAdHoc();

    /**
     * float ad_hoc_delay = 6;
     */
    float getAdHocDelay();
  }
  /**
   * Protobuf type {@code POGOProtos.Data.Telemetry.RpcSocketResponseTime}
   */
  public  static final class RpcSocketResponseTime extends
      com.google.protobuf.GeneratedMessageV3 implements
      // @@protoc_insertion_point(message_implements:POGOProtos.Data.Telemetry.RpcSocketResponseTime)
      RpcSocketResponseTimeOrBuilder {
  private static final long serialVersionUID = 0L;
    // Use RpcSocketResponseTime.newBuilder() to construct.
    private RpcSocketResponseTime(com.google.protobuf.GeneratedMessageV3.Builder builder) {
      super(builder);
    }
    private RpcSocketResponseTime() {
      requestId_ = 0L;
      probeId_ = "";
      responseTime_ = 0F;
      sideChannel_ = false;
      adHoc_ = false;
      adHocDelay_ = 0F;
    }

    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
    getUnknownFields() {
      return this.unknownFields;
    }
    private RpcSocketResponseTime(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      this();
      if (extensionRegistry == null) {
        throw new java.lang.NullPointerException();
      }
      int mutable_bitField0_ = 0;
      com.google.protobuf.UnknownFieldSet.Builder unknownFields =
          com.google.protobuf.UnknownFieldSet.newBuilder();
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            case 8: {

              requestId_ = input.readUInt64();
              break;
            }
            case 18: {
              java.lang.String s = input.readStringRequireUtf8();

              probeId_ = s;
              break;
            }
            case 29: {

              responseTime_ = input.readFloat();
              break;
            }
            case 32: {

              sideChannel_ = input.readBool();
              break;
            }
            case 40: {

              adHoc_ = input.readBool();
              break;
            }
            case 53: {

              adHocDelay_ = input.readFloat();
              break;
            }
            default: {
              if (!parseUnknownFieldProto3(
                  input, unknownFields, extensionRegistry, tag)) {
                done = true;
              }
              break;
            }
          }
        }
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(this);
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(
            e).setUnfinishedMessage(this);
      } finally {
        this.unknownFields = unknownFields.build();
        makeExtensionsImmutable();
      }
    }
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.internal_static_POGOProtos_Data_Telemetry_RpcSocketResponseTime_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.internal_static_POGOProtos_Data_Telemetry_RpcSocketResponseTime_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime.class, POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime.Builder.class);
    }

    public static final int REQUEST_ID_FIELD_NUMBER = 1;
    private long requestId_;
    /**
     * uint64 request_id = 1;
     */
    public long getRequestId() {
      return requestId_;
    }

    public static final int PROBE_ID_FIELD_NUMBER = 2;
    private volatile java.lang.Object probeId_;
    /**
     * string probe_id = 2;
     */
    public java.lang.String getProbeId() {
      java.lang.Object ref = probeId_;
      if (ref instanceof java.lang.String) {
        return (java.lang.String) ref;
      } else {
        com.google.protobuf.ByteString bs = 
            (com.google.protobuf.ByteString) ref;
        java.lang.String s = bs.toStringUtf8();
        probeId_ = s;
        return s;
      }
    }
    /**
     * string probe_id = 2;
     */
    public com.google.protobuf.ByteString
        getProbeIdBytes() {
      java.lang.Object ref = probeId_;
      if (ref instanceof java.lang.String) {
        com.google.protobuf.ByteString b = 
            com.google.protobuf.ByteString.copyFromUtf8(
                (java.lang.String) ref);
        probeId_ = b;
        return b;
      } else {
        return (com.google.protobuf.ByteString) ref;
      }
    }

    public static final int RESPONSE_TIME_FIELD_NUMBER = 3;
    private float responseTime_;
    /**
     * float response_time = 3;
     */
    public float getResponseTime() {
      return responseTime_;
    }

    public static final int SIDE_CHANNEL_FIELD_NUMBER = 4;
    private boolean sideChannel_;
    /**
     * bool side_channel = 4;
     */
    public boolean getSideChannel() {
      return sideChannel_;
    }

    public static final int AD_HOC_FIELD_NUMBER = 5;
    private boolean adHoc_;
    /**
     * bool ad_hoc = 5;
     */
    public boolean getAdHoc() {
      return adHoc_;
    }

    public static final int AD_HOC_DELAY_FIELD_NUMBER = 6;
    private float adHocDelay_;
    /**
     * float ad_hoc_delay = 6;
     */
    public float getAdHocDelay() {
      return adHocDelay_;
    }

    private byte memoizedIsInitialized = -1;
    @java.lang.Override
    public final boolean isInitialized() {
      byte isInitialized = memoizedIsInitialized;
      if (isInitialized == 1) return true;
      if (isInitialized == 0) return false;

      memoizedIsInitialized = 1;
      return true;
    }

    @java.lang.Override
    public void writeTo(com.google.protobuf.CodedOutputStream output)
                        throws java.io.IOException {
      if (requestId_ != 0L) {
        output.writeUInt64(1, requestId_);
      }
      if (!getProbeIdBytes().isEmpty()) {
        com.google.protobuf.GeneratedMessageV3.writeString(output, 2, probeId_);
      }
      if (responseTime_ != 0F) {
        output.writeFloat(3, responseTime_);
      }
      if (sideChannel_ != false) {
        output.writeBool(4, sideChannel_);
      }
      if (adHoc_ != false) {
        output.writeBool(5, adHoc_);
      }
      if (adHocDelay_ != 0F) {
        output.writeFloat(6, adHocDelay_);
      }
      unknownFields.writeTo(output);
    }

    @java.lang.Override
    public int getSerializedSize() {
      int size = memoizedSize;
      if (size != -1) return size;

      size = 0;
      if (requestId_ != 0L) {
        size += com.google.protobuf.CodedOutputStream
          .computeUInt64Size(1, requestId_);
      }
      if (!getProbeIdBytes().isEmpty()) {
        size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, probeId_);
      }
      if (responseTime_ != 0F) {
        size += com.google.protobuf.CodedOutputStream
          .computeFloatSize(3, responseTime_);
      }
      if (sideChannel_ != false) {
        size += com.google.protobuf.CodedOutputStream
          .computeBoolSize(4, sideChannel_);
      }
      if (adHoc_ != false) {
        size += com.google.protobuf.CodedOutputStream
          .computeBoolSize(5, adHoc_);
      }
      if (adHocDelay_ != 0F) {
        size += com.google.protobuf.CodedOutputStream
          .computeFloatSize(6, adHocDelay_);
      }
      size += unknownFields.getSerializedSize();
      memoizedSize = size;
      return size;
    }

    @java.lang.Override
    public boolean equals(final java.lang.Object obj) {
      if (obj == this) {
       return true;
      }
      if (!(obj instanceof POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime)) {
        return super.equals(obj);
      }
      POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime other = (POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime) obj;

      boolean result = true;
      result = result && (getRequestId()
          == other.getRequestId());
      result = result && getProbeId()
          .equals(other.getProbeId());
      result = result && (
          java.lang.Float.floatToIntBits(getResponseTime())
          == java.lang.Float.floatToIntBits(
              other.getResponseTime()));
      result = result && (getSideChannel()
          == other.getSideChannel());
      result = result && (getAdHoc()
          == other.getAdHoc());
      result = result && (
          java.lang.Float.floatToIntBits(getAdHocDelay())
          == java.lang.Float.floatToIntBits(
              other.getAdHocDelay()));
      result = result && unknownFields.equals(other.unknownFields);
      return result;
    }

    @java.lang.Override
    public int hashCode() {
      if (memoizedHashCode != 0) {
        return memoizedHashCode;
      }
      int hash = 41;
      hash = (19 * hash) + getDescriptor().hashCode();
      hash = (37 * hash) + REQUEST_ID_FIELD_NUMBER;
      hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
          getRequestId());
      hash = (37 * hash) + PROBE_ID_FIELD_NUMBER;
      hash = (53 * hash) + getProbeId().hashCode();
      hash = (37 * hash) + RESPONSE_TIME_FIELD_NUMBER;
      hash = (53 * hash) + java.lang.Float.floatToIntBits(
          getResponseTime());
      hash = (37 * hash) + SIDE_CHANNEL_FIELD_NUMBER;
      hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
          getSideChannel());
      hash = (37 * hash) + AD_HOC_FIELD_NUMBER;
      hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
          getAdHoc());
      hash = (37 * hash) + AD_HOC_DELAY_FIELD_NUMBER;
      hash = (53 * hash) + java.lang.Float.floatToIntBits(
          getAdHocDelay());
      hash = (29 * hash) + unknownFields.hashCode();
      memoizedHashCode = hash;
      return hash;
    }

    public static POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime parseFrom(
        java.nio.ByteBuffer data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime parseFrom(
        java.nio.ByteBuffer data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime parseFrom(
        com.google.protobuf.ByteString data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageV3
          .parseWithIOException(PARSER, input);
    }
    public static POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime parseFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageV3
          .parseWithIOException(PARSER, input, extensionRegistry);
    }
    public static POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageV3
          .parseDelimitedWithIOException(PARSER, input);
    }
    public static POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime parseDelimitedFrom(
        java.io.InputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageV3
          .parseDelimitedWithIOException(PARSER, input, extensionRegistry);
    }
    public static POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageV3
          .parseWithIOException(PARSER, input);
    }
    public static POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime parseFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageV3
          .parseWithIOException(PARSER, input, extensionRegistry);
    }

    @java.lang.Override
    public Builder newBuilderForType() { return newBuilder(); }
    public static Builder newBuilder() {
      return DEFAULT_INSTANCE.toBuilder();
    }
    public static Builder newBuilder(POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime prototype) {
      return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
    }
    @java.lang.Override
    public Builder toBuilder() {
      return this == DEFAULT_INSTANCE
          ? new Builder() : new Builder().mergeFrom(this);
    }

    @java.lang.Override
    protected Builder newBuilderForType(
        com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
      Builder builder = new Builder(parent);
      return builder;
    }
    /**
     * Protobuf type {@code POGOProtos.Data.Telemetry.RpcSocketResponseTime}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessageV3.Builder implements
        // @@protoc_insertion_point(builder_implements:POGOProtos.Data.Telemetry.RpcSocketResponseTime)
        POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTimeOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.internal_static_POGOProtos_Data_Telemetry_RpcSocketResponseTime_descriptor;
      }

      @java.lang.Override
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.internal_static_POGOProtos_Data_Telemetry_RpcSocketResponseTime_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime.class, POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime.Builder.class);
      }

      // Construct using POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime.newBuilder()
      private Builder() {
        maybeForceBuilderInitialization();
      }

      private Builder(
          com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
        super(parent);
        maybeForceBuilderInitialization();
      }
      private void maybeForceBuilderInitialization() {
        if (com.google.protobuf.GeneratedMessageV3
                .alwaysUseFieldBuilders) {
        }
      }
      @java.lang.Override
      public Builder clear() {
        super.clear();
        requestId_ = 0L;

        probeId_ = "";

        responseTime_ = 0F;

        sideChannel_ = false;

        adHoc_ = false;

        adHocDelay_ = 0F;

        return this;
      }

      @java.lang.Override
      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.internal_static_POGOProtos_Data_Telemetry_RpcSocketResponseTime_descriptor;
      }

      @java.lang.Override
      public POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime getDefaultInstanceForType() {
        return POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime.getDefaultInstance();
      }

      @java.lang.Override
      public POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime build() {
        POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      @java.lang.Override
      public POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime buildPartial() {
        POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime result = new POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime(this);
        result.requestId_ = requestId_;
        result.probeId_ = probeId_;
        result.responseTime_ = responseTime_;
        result.sideChannel_ = sideChannel_;
        result.adHoc_ = adHoc_;
        result.adHocDelay_ = adHocDelay_;
        onBuilt();
        return result;
      }

      @java.lang.Override
      public Builder clone() {
        return (Builder) super.clone();
      }
      @java.lang.Override
      public Builder setField(
          com.google.protobuf.Descriptors.FieldDescriptor field,
          java.lang.Object value) {
        return (Builder) super.setField(field, value);
      }
      @java.lang.Override
      public Builder clearField(
          com.google.protobuf.Descriptors.FieldDescriptor field) {
        return (Builder) super.clearField(field);
      }
      @java.lang.Override
      public Builder clearOneof(
          com.google.protobuf.Descriptors.OneofDescriptor oneof) {
        return (Builder) super.clearOneof(oneof);
      }
      @java.lang.Override
      public Builder setRepeatedField(
          com.google.protobuf.Descriptors.FieldDescriptor field,
          int index, java.lang.Object value) {
        return (Builder) super.setRepeatedField(field, index, value);
      }
      @java.lang.Override
      public Builder addRepeatedField(
          com.google.protobuf.Descriptors.FieldDescriptor field,
          java.lang.Object value) {
        return (Builder) super.addRepeatedField(field, value);
      }
      @java.lang.Override
      public Builder mergeFrom(com.google.protobuf.Message other) {
        if (other instanceof POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime) {
          return mergeFrom((POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime other) {
        if (other == POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime.getDefaultInstance()) return this;
        if (other.getRequestId() != 0L) {
          setRequestId(other.getRequestId());
        }
        if (!other.getProbeId().isEmpty()) {
          probeId_ = other.probeId_;
          onChanged();
        }
        if (other.getResponseTime() != 0F) {
          setResponseTime(other.getResponseTime());
        }
        if (other.getSideChannel() != false) {
          setSideChannel(other.getSideChannel());
        }
        if (other.getAdHoc() != false) {
          setAdHoc(other.getAdHoc());
        }
        if (other.getAdHocDelay() != 0F) {
          setAdHocDelay(other.getAdHocDelay());
        }
        this.mergeUnknownFields(other.unknownFields);
        onChanged();
        return this;
      }

      @java.lang.Override
      public final boolean isInitialized() {
        return true;
      }

      @java.lang.Override
      public Builder mergeFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws java.io.IOException {
        POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime) e.getUnfinishedMessage();
          throw e.unwrapIOException();
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }

      private long requestId_ ;
      /**
       * uint64 request_id = 1;
       */
      public long getRequestId() {
        return requestId_;
      }
      /**
       * uint64 request_id = 1;
       */
      public Builder setRequestId(long value) {
        
        requestId_ = value;
        onChanged();
        return this;
      }
      /**
       * uint64 request_id = 1;
       */
      public Builder clearRequestId() {
        
        requestId_ = 0L;
        onChanged();
        return this;
      }

      private java.lang.Object probeId_ = "";
      /**
       * string probe_id = 2;
       */
      public java.lang.String getProbeId() {
        java.lang.Object ref = probeId_;
        if (!(ref instanceof java.lang.String)) {
          com.google.protobuf.ByteString bs =
              (com.google.protobuf.ByteString) ref;
          java.lang.String s = bs.toStringUtf8();
          probeId_ = s;
          return s;
        } else {
          return (java.lang.String) ref;
        }
      }
      /**
       * string probe_id = 2;
       */
      public com.google.protobuf.ByteString
          getProbeIdBytes() {
        java.lang.Object ref = probeId_;
        if (ref instanceof String) {
          com.google.protobuf.ByteString b = 
              com.google.protobuf.ByteString.copyFromUtf8(
                  (java.lang.String) ref);
          probeId_ = b;
          return b;
        } else {
          return (com.google.protobuf.ByteString) ref;
        }
      }
      /**
       * string probe_id = 2;
       */
      public Builder setProbeId(
          java.lang.String value) {
        if (value == null) {
    throw new NullPointerException();
  }
  
        probeId_ = value;
        onChanged();
        return this;
      }
      /**
       * string probe_id = 2;
       */
      public Builder clearProbeId() {
        
        probeId_ = getDefaultInstance().getProbeId();
        onChanged();
        return this;
      }
      /**
       * string probe_id = 2;
       */
      public Builder setProbeIdBytes(
          com.google.protobuf.ByteString value) {
        if (value == null) {
    throw new NullPointerException();
  }
  checkByteStringIsUtf8(value);
        
        probeId_ = value;
        onChanged();
        return this;
      }

      private float responseTime_ ;
      /**
       * float response_time = 3;
       */
      public float getResponseTime() {
        return responseTime_;
      }
      /**
       * float response_time = 3;
       */
      public Builder setResponseTime(float value) {
        
        responseTime_ = value;
        onChanged();
        return this;
      }
      /**
       * float response_time = 3;
       */
      public Builder clearResponseTime() {
        
        responseTime_ = 0F;
        onChanged();
        return this;
      }

      private boolean sideChannel_ ;
      /**
       * bool side_channel = 4;
       */
      public boolean getSideChannel() {
        return sideChannel_;
      }
      /**
       * bool side_channel = 4;
       */
      public Builder setSideChannel(boolean value) {
        
        sideChannel_ = value;
        onChanged();
        return this;
      }
      /**
       * bool side_channel = 4;
       */
      public Builder clearSideChannel() {
        
        sideChannel_ = false;
        onChanged();
        return this;
      }

      private boolean adHoc_ ;
      /**
       * bool ad_hoc = 5;
       */
      public boolean getAdHoc() {
        return adHoc_;
      }
      /**
       * bool ad_hoc = 5;
       */
      public Builder setAdHoc(boolean value) {
        
        adHoc_ = value;
        onChanged();
        return this;
      }
      /**
       * bool ad_hoc = 5;
       */
      public Builder clearAdHoc() {
        
        adHoc_ = false;
        onChanged();
        return this;
      }

      private float adHocDelay_ ;
      /**
       * float ad_hoc_delay = 6;
       */
      public float getAdHocDelay() {
        return adHocDelay_;
      }
      /**
       * float ad_hoc_delay = 6;
       */
      public Builder setAdHocDelay(float value) {
        
        adHocDelay_ = value;
        onChanged();
        return this;
      }
      /**
       * float ad_hoc_delay = 6;
       */
      public Builder clearAdHocDelay() {
        
        adHocDelay_ = 0F;
        onChanged();
        return this;
      }
      @java.lang.Override
      public final Builder setUnknownFields(
          final com.google.protobuf.UnknownFieldSet unknownFields) {
        return super.setUnknownFieldsProto3(unknownFields);
      }

      @java.lang.Override
      public final Builder mergeUnknownFields(
          final com.google.protobuf.UnknownFieldSet unknownFields) {
        return super.mergeUnknownFields(unknownFields);
      }


      // @@protoc_insertion_point(builder_scope:POGOProtos.Data.Telemetry.RpcSocketResponseTime)
    }

    // @@protoc_insertion_point(class_scope:POGOProtos.Data.Telemetry.RpcSocketResponseTime)
    private static final POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime DEFAULT_INSTANCE;
    static {
      DEFAULT_INSTANCE = new POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime();
    }

    public static POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime getDefaultInstance() {
      return DEFAULT_INSTANCE;
    }

    private static final com.google.protobuf.Parser
        PARSER = new com.google.protobuf.AbstractParser() {
      @java.lang.Override
      public RpcSocketResponseTime parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new RpcSocketResponseTime(input, extensionRegistry);
      }
    };

    public static com.google.protobuf.Parser parser() {
      return PARSER;
    }

    @java.lang.Override
    public com.google.protobuf.Parser getParserForType() {
      return PARSER;
    }

    @java.lang.Override
    public POGOProtos.Data.Telemetry.RpcSocketResponseTimeOuterClass.RpcSocketResponseTime getDefaultInstanceForType() {
      return DEFAULT_INSTANCE;
    }

  }

  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_POGOProtos_Data_Telemetry_RpcSocketResponseTime_descriptor;
  private static final 
    com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internal_static_POGOProtos_Data_Telemetry_RpcSocketResponseTime_fieldAccessorTable;

  public static com.google.protobuf.Descriptors.FileDescriptor
      getDescriptor() {
    return descriptor;
  }
  private static  com.google.protobuf.Descriptors.FileDescriptor
      descriptor;
  static {
    java.lang.String[] descriptorData = {
      "\n5POGOProtos/Data/Telemetry/RpcSocketRes" +
      "ponseTime.proto\022\031POGOProtos.Data.Telemet" +
      "ry\"\220\001\n\025RpcSocketResponseTime\022\022\n\nrequest_" +
      "id\030\001 \001(\004\022\020\n\010probe_id\030\002 \001(\t\022\025\n\rresponse_t" +
      "ime\030\003 \001(\002\022\024\n\014side_channel\030\004 \001(\010\022\016\n\006ad_ho" +
      "c\030\005 \001(\010\022\024\n\014ad_hoc_delay\030\006 \001(\002b\006proto3"
    };
    com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
        new com.google.protobuf.Descriptors.FileDescriptor.    InternalDescriptorAssigner() {
          public com.google.protobuf.ExtensionRegistry assignDescriptors(
              com.google.protobuf.Descriptors.FileDescriptor root) {
            descriptor = root;
            return null;
          }
        };
    com.google.protobuf.Descriptors.FileDescriptor
      .internalBuildGeneratedFileFrom(descriptorData,
        new com.google.protobuf.Descriptors.FileDescriptor[] {
        }, assigner);
    internal_static_POGOProtos_Data_Telemetry_RpcSocketResponseTime_descriptor =
      getDescriptor().getMessageTypes().get(0);
    internal_static_POGOProtos_Data_Telemetry_RpcSocketResponseTime_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
        internal_static_POGOProtos_Data_Telemetry_RpcSocketResponseTime_descriptor,
        new java.lang.String[] { "RequestId", "ProbeId", "ResponseTime", "SideChannel", "AdHoc", "AdHocDelay", });
  }

  // @@protoc_insertion_point(outer_class_scope)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy