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

POGOProtos.Map.Weather.GameplayWeatherOuterClass Maven / Gradle / Ivy

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: POGOProtos/Map/Weather/GameplayWeather.proto

package POGOProtos.Map.Weather;

public final class GameplayWeatherOuterClass {
  private GameplayWeatherOuterClass() {}
  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 GameplayWeatherOrBuilder extends
      // @@protoc_insertion_point(interface_extends:POGOProtos.Map.Weather.GameplayWeather)
      com.google.protobuf.MessageOrBuilder {

    /**
     * .POGOProtos.Map.Weather.GameplayWeather.WeatherCondition gameplay_condition = 1;
     */
    int getGameplayConditionValue();
    /**
     * .POGOProtos.Map.Weather.GameplayWeather.WeatherCondition gameplay_condition = 1;
     */
    POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather.WeatherCondition getGameplayCondition();
  }
  /**
   * Protobuf type {@code POGOProtos.Map.Weather.GameplayWeather}
   */
  public  static final class GameplayWeather extends
      com.google.protobuf.GeneratedMessageV3 implements
      // @@protoc_insertion_point(message_implements:POGOProtos.Map.Weather.GameplayWeather)
      GameplayWeatherOrBuilder {
  private static final long serialVersionUID = 0L;
    // Use GameplayWeather.newBuilder() to construct.
    private GameplayWeather(com.google.protobuf.GeneratedMessageV3.Builder builder) {
      super(builder);
    }
    private GameplayWeather() {
      gameplayCondition_ = 0;
    }

    @java.lang.Override
    public final com.google.protobuf.UnknownFieldSet
    getUnknownFields() {
      return this.unknownFields;
    }
    private GameplayWeather(
        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: {
              int rawValue = input.readEnum();

              gameplayCondition_ = rawValue;
              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.Map.Weather.GameplayWeatherOuterClass.internal_static_POGOProtos_Map_Weather_GameplayWeather_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return POGOProtos.Map.Weather.GameplayWeatherOuterClass.internal_static_POGOProtos_Map_Weather_GameplayWeather_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather.class, POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather.Builder.class);
    }

    /**
     * Protobuf enum {@code POGOProtos.Map.Weather.GameplayWeather.WeatherCondition}
     */
    public enum WeatherCondition
        implements com.google.protobuf.ProtocolMessageEnum {
      /**
       * NONE = 0;
       */
      NONE(0),
      /**
       * CLEAR = 1;
       */
      CLEAR(1),
      /**
       * RAINY = 2;
       */
      RAINY(2),
      /**
       * PARTLY_CLOUDY = 3;
       */
      PARTLY_CLOUDY(3),
      /**
       * OVERCAST = 4;
       */
      OVERCAST(4),
      /**
       * WINDY = 5;
       */
      WINDY(5),
      /**
       * SNOW = 6;
       */
      SNOW(6),
      /**
       * FOG = 7;
       */
      FOG(7),
      UNRECOGNIZED(-1),
      ;

      /**
       * NONE = 0;
       */
      public static final int NONE_VALUE = 0;
      /**
       * CLEAR = 1;
       */
      public static final int CLEAR_VALUE = 1;
      /**
       * RAINY = 2;
       */
      public static final int RAINY_VALUE = 2;
      /**
       * PARTLY_CLOUDY = 3;
       */
      public static final int PARTLY_CLOUDY_VALUE = 3;
      /**
       * OVERCAST = 4;
       */
      public static final int OVERCAST_VALUE = 4;
      /**
       * WINDY = 5;
       */
      public static final int WINDY_VALUE = 5;
      /**
       * SNOW = 6;
       */
      public static final int SNOW_VALUE = 6;
      /**
       * FOG = 7;
       */
      public static final int FOG_VALUE = 7;


      public final int getNumber() {
        if (this == UNRECOGNIZED) {
          throw new java.lang.IllegalArgumentException(
              "Can't get the number of an unknown enum value.");
        }
        return value;
      }

      /**
       * @deprecated Use {@link #forNumber(int)} instead.
       */
      @java.lang.Deprecated
      public static WeatherCondition valueOf(int value) {
        return forNumber(value);
      }

      public static WeatherCondition forNumber(int value) {
        switch (value) {
          case 0: return NONE;
          case 1: return CLEAR;
          case 2: return RAINY;
          case 3: return PARTLY_CLOUDY;
          case 4: return OVERCAST;
          case 5: return WINDY;
          case 6: return SNOW;
          case 7: return FOG;
          default: return null;
        }
      }

      public static com.google.protobuf.Internal.EnumLiteMap
          internalGetValueMap() {
        return internalValueMap;
      }
      private static final com.google.protobuf.Internal.EnumLiteMap<
          WeatherCondition> internalValueMap =
            new com.google.protobuf.Internal.EnumLiteMap() {
              public WeatherCondition findValueByNumber(int number) {
                return WeatherCondition.forNumber(number);
              }
            };

      public final com.google.protobuf.Descriptors.EnumValueDescriptor
          getValueDescriptor() {
        return getDescriptor().getValues().get(ordinal());
      }
      public final com.google.protobuf.Descriptors.EnumDescriptor
          getDescriptorForType() {
        return getDescriptor();
      }
      public static final com.google.protobuf.Descriptors.EnumDescriptor
          getDescriptor() {
        return POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather.getDescriptor().getEnumTypes().get(0);
      }

      private static final WeatherCondition[] VALUES = values();

      public static WeatherCondition valueOf(
          com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
        if (desc.getType() != getDescriptor()) {
          throw new java.lang.IllegalArgumentException(
            "EnumValueDescriptor is not for this type.");
        }
        if (desc.getIndex() == -1) {
          return UNRECOGNIZED;
        }
        return VALUES[desc.getIndex()];
      }

      private final int value;

      private WeatherCondition(int value) {
        this.value = value;
      }

      // @@protoc_insertion_point(enum_scope:POGOProtos.Map.Weather.GameplayWeather.WeatherCondition)
    }

    public static final int GAMEPLAY_CONDITION_FIELD_NUMBER = 1;
    private int gameplayCondition_;
    /**
     * .POGOProtos.Map.Weather.GameplayWeather.WeatherCondition gameplay_condition = 1;
     */
    public int getGameplayConditionValue() {
      return gameplayCondition_;
    }
    /**
     * .POGOProtos.Map.Weather.GameplayWeather.WeatherCondition gameplay_condition = 1;
     */
    public POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather.WeatherCondition getGameplayCondition() {
      @SuppressWarnings("deprecation")
      POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather.WeatherCondition result = POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather.WeatherCondition.valueOf(gameplayCondition_);
      return result == null ? POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather.WeatherCondition.UNRECOGNIZED : result;
    }

    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 (gameplayCondition_ != POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather.WeatherCondition.NONE.getNumber()) {
        output.writeEnum(1, gameplayCondition_);
      }
      unknownFields.writeTo(output);
    }

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

      size = 0;
      if (gameplayCondition_ != POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather.WeatherCondition.NONE.getNumber()) {
        size += com.google.protobuf.CodedOutputStream
          .computeEnumSize(1, gameplayCondition_);
      }
      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.Map.Weather.GameplayWeatherOuterClass.GameplayWeather)) {
        return super.equals(obj);
      }
      POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather other = (POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather) obj;

      boolean result = true;
      result = result && gameplayCondition_ == other.gameplayCondition_;
      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) + GAMEPLAY_CONDITION_FIELD_NUMBER;
      hash = (53 * hash) + gameplayCondition_;
      hash = (29 * hash) + unknownFields.hashCode();
      memoizedHashCode = hash;
      return hash;
    }

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

      @java.lang.Override
      protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
          internalGetFieldAccessorTable() {
        return POGOProtos.Map.Weather.GameplayWeatherOuterClass.internal_static_POGOProtos_Map_Weather_GameplayWeather_fieldAccessorTable
            .ensureFieldAccessorsInitialized(
                POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather.class, POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather.Builder.class);
      }

      // Construct using POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather.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();
        gameplayCondition_ = 0;

        return this;
      }

      @java.lang.Override
      public com.google.protobuf.Descriptors.Descriptor
          getDescriptorForType() {
        return POGOProtos.Map.Weather.GameplayWeatherOuterClass.internal_static_POGOProtos_Map_Weather_GameplayWeather_descriptor;
      }

      @java.lang.Override
      public POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather getDefaultInstanceForType() {
        return POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather.getDefaultInstance();
      }

      @java.lang.Override
      public POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather build() {
        POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather result = buildPartial();
        if (!result.isInitialized()) {
          throw newUninitializedMessageException(result);
        }
        return result;
      }

      @java.lang.Override
      public POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather buildPartial() {
        POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather result = new POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather(this);
        result.gameplayCondition_ = gameplayCondition_;
        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.Map.Weather.GameplayWeatherOuterClass.GameplayWeather) {
          return mergeFrom((POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather)other);
        } else {
          super.mergeFrom(other);
          return this;
        }
      }

      public Builder mergeFrom(POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather other) {
        if (other == POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather.getDefaultInstance()) return this;
        if (other.gameplayCondition_ != 0) {
          setGameplayConditionValue(other.getGameplayConditionValue());
        }
        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.Map.Weather.GameplayWeatherOuterClass.GameplayWeather parsedMessage = null;
        try {
          parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
        } catch (com.google.protobuf.InvalidProtocolBufferException e) {
          parsedMessage = (POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather) e.getUnfinishedMessage();
          throw e.unwrapIOException();
        } finally {
          if (parsedMessage != null) {
            mergeFrom(parsedMessage);
          }
        }
        return this;
      }

      private int gameplayCondition_ = 0;
      /**
       * .POGOProtos.Map.Weather.GameplayWeather.WeatherCondition gameplay_condition = 1;
       */
      public int getGameplayConditionValue() {
        return gameplayCondition_;
      }
      /**
       * .POGOProtos.Map.Weather.GameplayWeather.WeatherCondition gameplay_condition = 1;
       */
      public Builder setGameplayConditionValue(int value) {
        gameplayCondition_ = value;
        onChanged();
        return this;
      }
      /**
       * .POGOProtos.Map.Weather.GameplayWeather.WeatherCondition gameplay_condition = 1;
       */
      public POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather.WeatherCondition getGameplayCondition() {
        @SuppressWarnings("deprecation")
        POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather.WeatherCondition result = POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather.WeatherCondition.valueOf(gameplayCondition_);
        return result == null ? POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather.WeatherCondition.UNRECOGNIZED : result;
      }
      /**
       * .POGOProtos.Map.Weather.GameplayWeather.WeatherCondition gameplay_condition = 1;
       */
      public Builder setGameplayCondition(POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather.WeatherCondition value) {
        if (value == null) {
          throw new NullPointerException();
        }
        
        gameplayCondition_ = value.getNumber();
        onChanged();
        return this;
      }
      /**
       * .POGOProtos.Map.Weather.GameplayWeather.WeatherCondition gameplay_condition = 1;
       */
      public Builder clearGameplayCondition() {
        
        gameplayCondition_ = 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.Map.Weather.GameplayWeather)
    }

    // @@protoc_insertion_point(class_scope:POGOProtos.Map.Weather.GameplayWeather)
    private static final POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather DEFAULT_INSTANCE;
    static {
      DEFAULT_INSTANCE = new POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather();
    }

    public static POGOProtos.Map.Weather.GameplayWeatherOuterClass.GameplayWeather getDefaultInstance() {
      return DEFAULT_INSTANCE;
    }

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

  }

  private static final com.google.protobuf.Descriptors.Descriptor
    internal_static_POGOProtos_Map_Weather_GameplayWeather_descriptor;
  private static final 
    com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internal_static_POGOProtos_Map_Weather_GameplayWeather_fieldAccessorTable;

  public static com.google.protobuf.Descriptors.FileDescriptor
      getDescriptor() {
    return descriptor;
  }
  private static  com.google.protobuf.Descriptors.FileDescriptor
      descriptor;
  static {
    java.lang.String[] descriptorData = {
      "\n,POGOProtos/Map/Weather/GameplayWeather" +
      ".proto\022\026POGOProtos.Map.Weather\"\332\001\n\017Gamep" +
      "layWeather\022T\n\022gameplay_condition\030\001 \001(\01628" +
      ".POGOProtos.Map.Weather.GameplayWeather." +
      "WeatherCondition\"q\n\020WeatherCondition\022\010\n\004" +
      "NONE\020\000\022\t\n\005CLEAR\020\001\022\t\n\005RAINY\020\002\022\021\n\rPARTLY_C" +
      "LOUDY\020\003\022\014\n\010OVERCAST\020\004\022\t\n\005WINDY\020\005\022\010\n\004SNOW" +
      "\020\006\022\007\n\003FOG\020\007b\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_Map_Weather_GameplayWeather_descriptor =
      getDescriptor().getMessageTypes().get(0);
    internal_static_POGOProtos_Map_Weather_GameplayWeather_fieldAccessorTable = new
      com.google.protobuf.GeneratedMessageV3.FieldAccessorTable(
        internal_static_POGOProtos_Map_Weather_GameplayWeather_descriptor,
        new java.lang.String[] { "GameplayCondition", });
  }

  // @@protoc_insertion_point(outer_class_scope)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy