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

POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass Maven / Gradle / Ivy

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

package POGOProtos.Data.Ditto;

public final class LocationUpdateEventParamsOuterClass {
  private LocationUpdateEventParamsOuterClass() {}
  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 LocationUpdateEventParamsOrBuilder extends
      // @@protoc_insertion_point(interface_extends:POGOProtos.Data.Ditto.LocationUpdateEventParams)
      com.google.protobuf.MessageOrBuilder {

    /**
     * double latitude_deg = 1;
     */
    double getLatitudeDeg();

    /**
     * double longitude_deg = 2;
     */
    double getLongitudeDeg();

    /**
     * double altitude_m = 3;
     */
    double getAltitudeM();

    /**
     * double accuracy_m = 4;
     */
    double getAccuracyM();

    /**
     * double timestamp_s = 5;
     */
    double getTimestampS();

    /**
     * uint32 provider_status = 6;
     */
    int getProviderStatus();

    /**
     * uint32 location_type = 7;
     */
    int getLocationType();
  }
  /**
   * Protobuf type {@code POGOProtos.Data.Ditto.LocationUpdateEventParams}
   */
  public  static final class LocationUpdateEventParams extends
      com.google.protobuf.GeneratedMessageV3 implements
      // @@protoc_insertion_point(message_implements:POGOProtos.Data.Ditto.LocationUpdateEventParams)
      LocationUpdateEventParamsOrBuilder {
  private static final long serialVersionUID = 0L;
    // Use LocationUpdateEventParams.newBuilder() to construct.
    private LocationUpdateEventParams(com.google.protobuf.GeneratedMessageV3.Builder builder) {
      super(builder);
    }
    private LocationUpdateEventParams() {
      latitudeDeg_ = 0D;
      longitudeDeg_ = 0D;
      altitudeM_ = 0D;
      accuracyM_ = 0D;
      timestampS_ = 0D;
      providerStatus_ = 0;
      locationType_ = 0;
    }

    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
    getUnknownFields() {
      return this.unknownFields;
    }
    private LocationUpdateEventParams(
        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 9: {

              latitudeDeg_ = input.readDouble();
              break;
            }
            case 17: {

              longitudeDeg_ = input.readDouble();
              break;
            }
            case 25: {

              altitudeM_ = input.readDouble();
              break;
            }
            case 33: {

              accuracyM_ = input.readDouble();
              break;
            }
            case 41: {

              timestampS_ = input.readDouble();
              break;
            }
            case 48: {

              providerStatus_ = input.readUInt32();
              break;
            }
            case 56: {

              locationType_ = input.readUInt32();
              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.Ditto.LocationUpdateEventParamsOuterClass.internal_static_POGOProtos_Data_Ditto_LocationUpdateEventParams_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.internal_static_POGOProtos_Data_Ditto_LocationUpdateEventParams_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams.class, POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams.Builder.class);
    }

    public static final int LATITUDE_DEG_FIELD_NUMBER = 1;
    private double latitudeDeg_;
    /**
     * double latitude_deg = 1;
     */
    public double getLatitudeDeg() {
      return latitudeDeg_;
    }

    public static final int LONGITUDE_DEG_FIELD_NUMBER = 2;
    private double longitudeDeg_;
    /**
     * double longitude_deg = 2;
     */
    public double getLongitudeDeg() {
      return longitudeDeg_;
    }

    public static final int ALTITUDE_M_FIELD_NUMBER = 3;
    private double altitudeM_;
    /**
     * double altitude_m = 3;
     */
    public double getAltitudeM() {
      return altitudeM_;
    }

    public static final int ACCURACY_M_FIELD_NUMBER = 4;
    private double accuracyM_;
    /**
     * double accuracy_m = 4;
     */
    public double getAccuracyM() {
      return accuracyM_;
    }

    public static final int TIMESTAMP_S_FIELD_NUMBER = 5;
    private double timestampS_;
    /**
     * double timestamp_s = 5;
     */
    public double getTimestampS() {
      return timestampS_;
    }

    public static final int PROVIDER_STATUS_FIELD_NUMBER = 6;
    private int providerStatus_;
    /**
     * uint32 provider_status = 6;
     */
    public int getProviderStatus() {
      return providerStatus_;
    }

    public static final int LOCATION_TYPE_FIELD_NUMBER = 7;
    private int locationType_;
    /**
     * uint32 location_type = 7;
     */
    public int getLocationType() {
      return locationType_;
    }

    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 (latitudeDeg_ != 0D) {
        output.writeDouble(1, latitudeDeg_);
      }
      if (longitudeDeg_ != 0D) {
        output.writeDouble(2, longitudeDeg_);
      }
      if (altitudeM_ != 0D) {
        output.writeDouble(3, altitudeM_);
      }
      if (accuracyM_ != 0D) {
        output.writeDouble(4, accuracyM_);
      }
      if (timestampS_ != 0D) {
        output.writeDouble(5, timestampS_);
      }
      if (providerStatus_ != 0) {
        output.writeUInt32(6, providerStatus_);
      }
      if (locationType_ != 0) {
        output.writeUInt32(7, locationType_);
      }
      unknownFields.writeTo(output);
    }

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

      size = 0;
      if (latitudeDeg_ != 0D) {
        size += com.google.protobuf.CodedOutputStream
          .computeDoubleSize(1, latitudeDeg_);
      }
      if (longitudeDeg_ != 0D) {
        size += com.google.protobuf.CodedOutputStream
          .computeDoubleSize(2, longitudeDeg_);
      }
      if (altitudeM_ != 0D) {
        size += com.google.protobuf.CodedOutputStream
          .computeDoubleSize(3, altitudeM_);
      }
      if (accuracyM_ != 0D) {
        size += com.google.protobuf.CodedOutputStream
          .computeDoubleSize(4, accuracyM_);
      }
      if (timestampS_ != 0D) {
        size += com.google.protobuf.CodedOutputStream
          .computeDoubleSize(5, timestampS_);
      }
      if (providerStatus_ != 0) {
        size += com.google.protobuf.CodedOutputStream
          .computeUInt32Size(6, providerStatus_);
      }
      if (locationType_ != 0) {
        size += com.google.protobuf.CodedOutputStream
          .computeUInt32Size(7, locationType_);
      }
      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.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams)) {
        return super.equals(obj);
      }
      POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams other = (POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams) obj;

      boolean result = true;
      result = result && (
          java.lang.Double.doubleToLongBits(getLatitudeDeg())
          == java.lang.Double.doubleToLongBits(
              other.getLatitudeDeg()));
      result = result && (
          java.lang.Double.doubleToLongBits(getLongitudeDeg())
          == java.lang.Double.doubleToLongBits(
              other.getLongitudeDeg()));
      result = result && (
          java.lang.Double.doubleToLongBits(getAltitudeM())
          == java.lang.Double.doubleToLongBits(
              other.getAltitudeM()));
      result = result && (
          java.lang.Double.doubleToLongBits(getAccuracyM())
          == java.lang.Double.doubleToLongBits(
              other.getAccuracyM()));
      result = result && (
          java.lang.Double.doubleToLongBits(getTimestampS())
          == java.lang.Double.doubleToLongBits(
              other.getTimestampS()));
      result = result && (getProviderStatus()
          == other.getProviderStatus());
      result = result && (getLocationType()
          == other.getLocationType());
      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) + LATITUDE_DEG_FIELD_NUMBER;
      hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
          java.lang.Double.doubleToLongBits(getLatitudeDeg()));
      hash = (37 * hash) + LONGITUDE_DEG_FIELD_NUMBER;
      hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
          java.lang.Double.doubleToLongBits(getLongitudeDeg()));
      hash = (37 * hash) + ALTITUDE_M_FIELD_NUMBER;
      hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
          java.lang.Double.doubleToLongBits(getAltitudeM()));
      hash = (37 * hash) + ACCURACY_M_FIELD_NUMBER;
      hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
          java.lang.Double.doubleToLongBits(getAccuracyM()));
      hash = (37 * hash) + TIMESTAMP_S_FIELD_NUMBER;
      hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
          java.lang.Double.doubleToLongBits(getTimestampS()));
      hash = (37 * hash) + PROVIDER_STATUS_FIELD_NUMBER;
      hash = (53 * hash) + getProviderStatus();
      hash = (37 * hash) + LOCATION_TYPE_FIELD_NUMBER;
      hash = (53 * hash) + getLocationType();
      hash = (29 * hash) + unknownFields.hashCode();
      memoizedHashCode = hash;
      return hash;
    }

    public static POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams parseFrom(
        java.nio.ByteBuffer data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams parseFrom(
        java.nio.ByteBuffer data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams parseFrom(
        com.google.protobuf.ByteString data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams 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.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams parseFrom(byte[] data)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data);
    }
    public static POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams parseFrom(
        byte[] data,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      return PARSER.parseFrom(data, extensionRegistry);
    }
    public static POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams parseFrom(java.io.InputStream input)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageV3
          .parseWithIOException(PARSER, input);
    }
    public static POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams 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.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams parseDelimitedFrom(java.io.InputStream input)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageV3
          .parseDelimitedWithIOException(PARSER, input);
    }
    public static POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams 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.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams parseFrom(
        com.google.protobuf.CodedInputStream input)
        throws java.io.IOException {
      return com.google.protobuf.GeneratedMessageV3
          .parseWithIOException(PARSER, input);
    }
    public static POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams 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.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams 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.Ditto.LocationUpdateEventParams}
     */
    public static final class Builder extends
        com.google.protobuf.GeneratedMessageV3.Builder implements
        // @@protoc_insertion_point(builder_implements:POGOProtos.Data.Ditto.LocationUpdateEventParams)
        POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParamsOrBuilder {
      public static final com.google.protobuf.Descriptors.Descriptor
          getDescriptor() {
        return POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.internal_static_POGOProtos_Data_Ditto_LocationUpdateEventParams_descriptor;
      }

      @java.lang.Override
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.internal_static_POGOProtos_Data_Ditto_LocationUpdateEventParams_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams.class, POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams.Builder.class);
      }

      // Construct using POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams.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();
        latitudeDeg_ = 0D;

        longitudeDeg_ = 0D;

        altitudeM_ = 0D;

        accuracyM_ = 0D;

        timestampS_ = 0D;

        providerStatus_ = 0;

        locationType_ = 0;

        return this;
      }

      @java.lang.Override
      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.internal_static_POGOProtos_Data_Ditto_LocationUpdateEventParams_descriptor;
      }

      @java.lang.Override
      public POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams getDefaultInstanceForType() {
        return POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams.getDefaultInstance();
      }

      @java.lang.Override
      public POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams build() {
        POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      @java.lang.Override
      public POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams buildPartial() {
        POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams result = new POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams(this);
        result.latitudeDeg_ = latitudeDeg_;
        result.longitudeDeg_ = longitudeDeg_;
        result.altitudeM_ = altitudeM_;
        result.accuracyM_ = accuracyM_;
        result.timestampS_ = timestampS_;
        result.providerStatus_ = providerStatus_;
        result.locationType_ = locationType_;
        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.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams) {
          return mergeFrom((POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams other) {
        if (other == POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams.getDefaultInstance()) return this;
        if (other.getLatitudeDeg() != 0D) {
          setLatitudeDeg(other.getLatitudeDeg());
        }
        if (other.getLongitudeDeg() != 0D) {
          setLongitudeDeg(other.getLongitudeDeg());
        }
        if (other.getAltitudeM() != 0D) {
          setAltitudeM(other.getAltitudeM());
        }
        if (other.getAccuracyM() != 0D) {
          setAccuracyM(other.getAccuracyM());
        }
        if (other.getTimestampS() != 0D) {
          setTimestampS(other.getTimestampS());
        }
        if (other.getProviderStatus() != 0) {
          setProviderStatus(other.getProviderStatus());
        }
        if (other.getLocationType() != 0) {
          setLocationType(other.getLocationType());
        }
        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.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams) e.getUnfinishedMessage();
          throw e.unwrapIOException();
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }

      private double latitudeDeg_ ;
      /**
       * double latitude_deg = 1;
       */
      public double getLatitudeDeg() {
        return latitudeDeg_;
      }
      /**
       * double latitude_deg = 1;
       */
      public Builder setLatitudeDeg(double value) {
        
        latitudeDeg_ = value;
        onChanged();
        return this;
      }
      /**
       * double latitude_deg = 1;
       */
      public Builder clearLatitudeDeg() {
        
        latitudeDeg_ = 0D;
        onChanged();
        return this;
      }

      private double longitudeDeg_ ;
      /**
       * double longitude_deg = 2;
       */
      public double getLongitudeDeg() {
        return longitudeDeg_;
      }
      /**
       * double longitude_deg = 2;
       */
      public Builder setLongitudeDeg(double value) {
        
        longitudeDeg_ = value;
        onChanged();
        return this;
      }
      /**
       * double longitude_deg = 2;
       */
      public Builder clearLongitudeDeg() {
        
        longitudeDeg_ = 0D;
        onChanged();
        return this;
      }

      private double altitudeM_ ;
      /**
       * double altitude_m = 3;
       */
      public double getAltitudeM() {
        return altitudeM_;
      }
      /**
       * double altitude_m = 3;
       */
      public Builder setAltitudeM(double value) {
        
        altitudeM_ = value;
        onChanged();
        return this;
      }
      /**
       * double altitude_m = 3;
       */
      public Builder clearAltitudeM() {
        
        altitudeM_ = 0D;
        onChanged();
        return this;
      }

      private double accuracyM_ ;
      /**
       * double accuracy_m = 4;
       */
      public double getAccuracyM() {
        return accuracyM_;
      }
      /**
       * double accuracy_m = 4;
       */
      public Builder setAccuracyM(double value) {
        
        accuracyM_ = value;
        onChanged();
        return this;
      }
      /**
       * double accuracy_m = 4;
       */
      public Builder clearAccuracyM() {
        
        accuracyM_ = 0D;
        onChanged();
        return this;
      }

      private double timestampS_ ;
      /**
       * double timestamp_s = 5;
       */
      public double getTimestampS() {
        return timestampS_;
      }
      /**
       * double timestamp_s = 5;
       */
      public Builder setTimestampS(double value) {
        
        timestampS_ = value;
        onChanged();
        return this;
      }
      /**
       * double timestamp_s = 5;
       */
      public Builder clearTimestampS() {
        
        timestampS_ = 0D;
        onChanged();
        return this;
      }

      private int providerStatus_ ;
      /**
       * uint32 provider_status = 6;
       */
      public int getProviderStatus() {
        return providerStatus_;
      }
      /**
       * uint32 provider_status = 6;
       */
      public Builder setProviderStatus(int value) {
        
        providerStatus_ = value;
        onChanged();
        return this;
      }
      /**
       * uint32 provider_status = 6;
       */
      public Builder clearProviderStatus() {
        
        providerStatus_ = 0;
        onChanged();
        return this;
      }

      private int locationType_ ;
      /**
       * uint32 location_type = 7;
       */
      public int getLocationType() {
        return locationType_;
      }
      /**
       * uint32 location_type = 7;
       */
      public Builder setLocationType(int value) {
        
        locationType_ = value;
        onChanged();
        return this;
      }
      /**
       * uint32 location_type = 7;
       */
      public Builder clearLocationType() {
        
        locationType_ = 0;
        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.Ditto.LocationUpdateEventParams)
    }

    // @@protoc_insertion_point(class_scope:POGOProtos.Data.Ditto.LocationUpdateEventParams)
    private static final POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams DEFAULT_INSTANCE;
    static {
      DEFAULT_INSTANCE = new POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams();
    }

    public static POGOProtos.Data.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams getDefaultInstance() {
      return DEFAULT_INSTANCE;
    }

    private static final com.google.protobuf.Parser
        PARSER = new com.google.protobuf.AbstractParser() {
      @java.lang.Override
      public LocationUpdateEventParams parsePartialFrom(
          com.google.protobuf.CodedInputStream input,
          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          throws com.google.protobuf.InvalidProtocolBufferException {
        return new LocationUpdateEventParams(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.Ditto.LocationUpdateEventParamsOuterClass.LocationUpdateEventParams getDefaultInstanceForType() {
      return DEFAULT_INSTANCE;
    }

  }

  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_POGOProtos_Data_Ditto_LocationUpdateEventParams_descriptor;
  private static final 
    com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internal_static_POGOProtos_Data_Ditto_LocationUpdateEventParams_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/Ditto/LocationUpdateEv" +
      "entParams.proto\022\025POGOProtos.Data.Ditto\"\265" +
      "\001\n\031LocationUpdateEventParams\022\024\n\014latitude" +
      "_deg\030\001 \001(\001\022\025\n\rlongitude_deg\030\002 \001(\001\022\022\n\nalt" +
      "itude_m\030\003 \001(\001\022\022\n\naccuracy_m\030\004 \001(\001\022\023\n\013tim" +
      "estamp_s\030\005 \001(\001\022\027\n\017provider_status\030\006 \001(\r\022" +
      "\025\n\rlocation_type\030\007 \001(\rb\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_Ditto_LocationUpdateEventParams_descriptor =
      getDescriptor().getMessageTypes().get(0);
    internal_static_POGOProtos_Data_Ditto_LocationUpdateEventParams_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
        internal_static_POGOProtos_Data_Ditto_LocationUpdateEventParams_descriptor,
        new java.lang.String[] { "LatitudeDeg", "LongitudeDeg", "AltitudeM", "AccuracyM", "TimestampS", "ProviderStatus", "LocationType", });
  }

  // @@protoc_insertion_point(outer_class_scope)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy