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

com.google.protobuf.Enum Maven / Gradle / Ivy

Go to download

Lite version of Protocol Buffers library. This version is optimized for code size, but does not guarantee API/ABI stability.

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// NO CHECKED-IN PROTOBUF GENCODE
// source: google/protobuf/type.proto
// Protobuf Java Version: 4.28.2

package com.google.protobuf;

/**
 * Protobuf type {@code google.protobuf.Enum}
 */
public  final class Enum extends
    com.google.protobuf.GeneratedMessageLite<
        Enum, Enum.Builder> implements
    // @@protoc_insertion_point(message_implements:google.protobuf.Enum)
    EnumOrBuilder {
  private Enum() {
    name_ = "";
    enumvalue_ = emptyProtobufList();
    options_ = emptyProtobufList();
    edition_ = "";
  }
  private int bitField0_;
  public static final int NAME_FIELD_NUMBER = 1;
  private java.lang.String name_;
  /**
   * string name = 1 [json_name = "name"];
   * @return The name.
   */
  @java.lang.Override
  public java.lang.String getName() {
    return name_;
  }
  /**
   * string name = 1 [json_name = "name"];
   * @return The bytes for name.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString
      getNameBytes() {
    return com.google.protobuf.ByteString.copyFromUtf8(name_);
  }
  /**
   * string name = 1 [json_name = "name"];
   * @param value The name to set.
   */
  private void setName(
      java.lang.String value) {
    java.lang.Class valueClass = value.getClass();
  
    name_ = value;
  }
  /**
   * string name = 1 [json_name = "name"];
   */
  private void clearName() {

    name_ = getDefaultInstance().getName();
  }
  /**
   * string name = 1 [json_name = "name"];
   * @param value The bytes for name to set.
   */
  private void setNameBytes(
      com.google.protobuf.ByteString value) {
    checkByteStringIsUtf8(value);
    name_ = value.toStringUtf8();

  }

  public static final int ENUMVALUE_FIELD_NUMBER = 2;
  private com.google.protobuf.Internal.ProtobufList enumvalue_;
  /**
   * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
   */
  @java.lang.Override
  public java.util.List getEnumvalueList() {
    return enumvalue_;
  }
  /**
   * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
   */
  public java.util.List 
      getEnumvalueOrBuilderList() {
    return enumvalue_;
  }
  /**
   * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
   */
  @java.lang.Override
  public int getEnumvalueCount() {
    return enumvalue_.size();
  }
  /**
   * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
   */
  @java.lang.Override
  public com.google.protobuf.EnumValue getEnumvalue(int index) {
    return enumvalue_.get(index);
  }
  /**
   * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
   */
  public com.google.protobuf.EnumValueOrBuilder getEnumvalueOrBuilder(
      int index) {
    return enumvalue_.get(index);
  }
  private void ensureEnumvalueIsMutable() {
    com.google.protobuf.Internal.ProtobufList tmp = enumvalue_;
    if (!tmp.isModifiable()) {
      enumvalue_ =
          com.google.protobuf.GeneratedMessageLite.mutableCopy(tmp);
     }
  }

  /**
   * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
   */
  private void setEnumvalue(
      int index, com.google.protobuf.EnumValue value) {
    value.getClass();
  ensureEnumvalueIsMutable();
    enumvalue_.set(index, value);
  }
  /**
   * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
   */
  private void addEnumvalue(com.google.protobuf.EnumValue value) {
    value.getClass();
  ensureEnumvalueIsMutable();
    enumvalue_.add(value);
  }
  /**
   * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
   */
  private void addEnumvalue(
      int index, com.google.protobuf.EnumValue value) {
    value.getClass();
  ensureEnumvalueIsMutable();
    enumvalue_.add(index, value);
  }
  /**
   * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
   */
  private void addAllEnumvalue(
      java.lang.Iterable values) {
    ensureEnumvalueIsMutable();
    com.google.protobuf.AbstractMessageLite.addAll(
        values, enumvalue_);
  }
  /**
   * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
   */
  private void clearEnumvalue() {
    enumvalue_ = emptyProtobufList();
  }
  /**
   * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
   */
  private void removeEnumvalue(int index) {
    ensureEnumvalueIsMutable();
    enumvalue_.remove(index);
  }

  public static final int OPTIONS_FIELD_NUMBER = 3;
  private com.google.protobuf.Internal.ProtobufList options_;
  /**
   * repeated .google.protobuf.Option options = 3 [json_name = "options"];
   */
  @java.lang.Override
  public java.util.List getOptionsList() {
    return options_;
  }
  /**
   * repeated .google.protobuf.Option options = 3 [json_name = "options"];
   */
  public java.util.List 
      getOptionsOrBuilderList() {
    return options_;
  }
  /**
   * repeated .google.protobuf.Option options = 3 [json_name = "options"];
   */
  @java.lang.Override
  public int getOptionsCount() {
    return options_.size();
  }
  /**
   * repeated .google.protobuf.Option options = 3 [json_name = "options"];
   */
  @java.lang.Override
  public com.google.protobuf.Option getOptions(int index) {
    return options_.get(index);
  }
  /**
   * repeated .google.protobuf.Option options = 3 [json_name = "options"];
   */
  public com.google.protobuf.OptionOrBuilder getOptionsOrBuilder(
      int index) {
    return options_.get(index);
  }
  private void ensureOptionsIsMutable() {
    com.google.protobuf.Internal.ProtobufList tmp = options_;
    if (!tmp.isModifiable()) {
      options_ =
          com.google.protobuf.GeneratedMessageLite.mutableCopy(tmp);
     }
  }

  /**
   * repeated .google.protobuf.Option options = 3 [json_name = "options"];
   */
  private void setOptions(
      int index, com.google.protobuf.Option value) {
    value.getClass();
  ensureOptionsIsMutable();
    options_.set(index, value);
  }
  /**
   * repeated .google.protobuf.Option options = 3 [json_name = "options"];
   */
  private void addOptions(com.google.protobuf.Option value) {
    value.getClass();
  ensureOptionsIsMutable();
    options_.add(value);
  }
  /**
   * repeated .google.protobuf.Option options = 3 [json_name = "options"];
   */
  private void addOptions(
      int index, com.google.protobuf.Option value) {
    value.getClass();
  ensureOptionsIsMutable();
    options_.add(index, value);
  }
  /**
   * repeated .google.protobuf.Option options = 3 [json_name = "options"];
   */
  private void addAllOptions(
      java.lang.Iterable values) {
    ensureOptionsIsMutable();
    com.google.protobuf.AbstractMessageLite.addAll(
        values, options_);
  }
  /**
   * repeated .google.protobuf.Option options = 3 [json_name = "options"];
   */
  private void clearOptions() {
    options_ = emptyProtobufList();
  }
  /**
   * repeated .google.protobuf.Option options = 3 [json_name = "options"];
   */
  private void removeOptions(int index) {
    ensureOptionsIsMutable();
    options_.remove(index);
  }

  public static final int SOURCE_CONTEXT_FIELD_NUMBER = 4;
  private com.google.protobuf.SourceContext sourceContext_;
  /**
   * .google.protobuf.SourceContext source_context = 4 [json_name = "sourceContext"];
   */
  @java.lang.Override
  public boolean hasSourceContext() {
    return ((bitField0_ & 0x00000001) != 0);
  }
  /**
   * .google.protobuf.SourceContext source_context = 4 [json_name = "sourceContext"];
   */
  @java.lang.Override
  public com.google.protobuf.SourceContext getSourceContext() {
    return sourceContext_ == null ? com.google.protobuf.SourceContext.getDefaultInstance() : sourceContext_;
  }
  /**
   * .google.protobuf.SourceContext source_context = 4 [json_name = "sourceContext"];
   */
  private void setSourceContext(com.google.protobuf.SourceContext value) {
    value.getClass();
  sourceContext_ = value;
    bitField0_ |= 0x00000001;
    }
  /**
   * .google.protobuf.SourceContext source_context = 4 [json_name = "sourceContext"];
   */
  @java.lang.SuppressWarnings({"ReferenceEquality"})
  private void mergeSourceContext(com.google.protobuf.SourceContext value) {
    value.getClass();
  if (sourceContext_ != null &&
        sourceContext_ != com.google.protobuf.SourceContext.getDefaultInstance()) {
      sourceContext_ =
        com.google.protobuf.SourceContext.newBuilder(sourceContext_).mergeFrom(value).buildPartial();
    } else {
      sourceContext_ = value;
    }
    bitField0_ |= 0x00000001;
  }
  /**
   * .google.protobuf.SourceContext source_context = 4 [json_name = "sourceContext"];
   */
  private void clearSourceContext() {  sourceContext_ = null;
    bitField0_ = (bitField0_ & ~0x00000001);
  }

  public static final int SYNTAX_FIELD_NUMBER = 5;
  private int syntax_;
  /**
   * .google.protobuf.Syntax syntax = 5 [json_name = "syntax"];
   * @return The enum numeric value on the wire for syntax.
   */
  @java.lang.Override
  public int getSyntaxValue() {
    return syntax_;
  }
  /**
   * .google.protobuf.Syntax syntax = 5 [json_name = "syntax"];
   * @return The syntax.
   */
  @java.lang.Override
  public com.google.protobuf.Syntax getSyntax() {
    com.google.protobuf.Syntax result = com.google.protobuf.Syntax.forNumber(syntax_);
    return result == null ? com.google.protobuf.Syntax.UNRECOGNIZED : result;
  }
  /**
   * .google.protobuf.Syntax syntax = 5 [json_name = "syntax"];
   * @param value The enum numeric value on the wire for syntax to set.
   */
  private void setSyntaxValue(int value) {
      syntax_ = value;
  }
  /**
   * .google.protobuf.Syntax syntax = 5 [json_name = "syntax"];
   * @param value The syntax to set.
   */
  private void setSyntax(com.google.protobuf.Syntax value) {
    syntax_ = value.getNumber();

  }
  /**
   * .google.protobuf.Syntax syntax = 5 [json_name = "syntax"];
   */
  private void clearSyntax() {

    syntax_ = 0;
  }

  public static final int EDITION_FIELD_NUMBER = 6;
  private java.lang.String edition_;
  /**
   * string edition = 6 [json_name = "edition"];
   * @return The edition.
   */
  @java.lang.Override
  public java.lang.String getEdition() {
    return edition_;
  }
  /**
   * string edition = 6 [json_name = "edition"];
   * @return The bytes for edition.
   */
  @java.lang.Override
  public com.google.protobuf.ByteString
      getEditionBytes() {
    return com.google.protobuf.ByteString.copyFromUtf8(edition_);
  }
  /**
   * string edition = 6 [json_name = "edition"];
   * @param value The edition to set.
   */
  private void setEdition(
      java.lang.String value) {
    java.lang.Class valueClass = value.getClass();
  
    edition_ = value;
  }
  /**
   * string edition = 6 [json_name = "edition"];
   */
  private void clearEdition() {

    edition_ = getDefaultInstance().getEdition();
  }
  /**
   * string edition = 6 [json_name = "edition"];
   * @param value The bytes for edition to set.
   */
  private void setEditionBytes(
      com.google.protobuf.ByteString value) {
    checkByteStringIsUtf8(value);
    edition_ = value.toStringUtf8();

  }

  public static com.google.protobuf.Enum parseFrom(
      java.nio.ByteBuffer data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, data);
  }
  public static com.google.protobuf.Enum parseFrom(
      java.nio.ByteBuffer data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, data, extensionRegistry);
  }
  public static com.google.protobuf.Enum parseFrom(
      com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, data);
  }
  public static com.google.protobuf.Enum parseFrom(
      com.google.protobuf.ByteString data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, data, extensionRegistry);
  }
  public static com.google.protobuf.Enum parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, data);
  }
  public static com.google.protobuf.Enum parseFrom(
      byte[] data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, data, extensionRegistry);
  }
  public static com.google.protobuf.Enum parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, input);
  }
  public static com.google.protobuf.Enum parseFrom(
      java.io.InputStream input,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, input, extensionRegistry);
  }

  public static com.google.protobuf.Enum parseDelimitedFrom(java.io.InputStream input)
      throws java.io.IOException {
    return parseDelimitedFrom(DEFAULT_INSTANCE, input);
  }

  public static com.google.protobuf.Enum parseDelimitedFrom(
      java.io.InputStream input,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry);
  }
  public static com.google.protobuf.Enum parseFrom(
      com.google.protobuf.CodedInputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, input);
  }
  public static com.google.protobuf.Enum parseFrom(
      com.google.protobuf.CodedInputStream input,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, input, extensionRegistry);
  }

  public static Builder newBuilder() {
    return (Builder) DEFAULT_INSTANCE.createBuilder();
  }
  public static Builder newBuilder(com.google.protobuf.Enum prototype) {
    return DEFAULT_INSTANCE.createBuilder(prototype);
  }

  /**
   * Protobuf type {@code google.protobuf.Enum}
   */
  public static final class Builder extends
      com.google.protobuf.GeneratedMessageLite.Builder<
        com.google.protobuf.Enum, Builder> implements
      // @@protoc_insertion_point(builder_implements:google.protobuf.Enum)
      com.google.protobuf.EnumOrBuilder {
    // Construct using com.google.protobuf.Enum.newBuilder()
    private Builder() {
      super(DEFAULT_INSTANCE);
    }


    /**
     * string name = 1 [json_name = "name"];
     * @return The name.
     */
    @java.lang.Override
    public java.lang.String getName() {
      return instance.getName();
    }
    /**
     * string name = 1 [json_name = "name"];
     * @return The bytes for name.
     */
    @java.lang.Override
    public com.google.protobuf.ByteString
        getNameBytes() {
      return instance.getNameBytes();
    }
    /**
     * string name = 1 [json_name = "name"];
     * @param value The name to set.
     * @return This builder for chaining.
     */
    public Builder setName(
        java.lang.String value) {
      copyOnWrite();
      instance.setName(value);
      return this;
    }
    /**
     * string name = 1 [json_name = "name"];
     * @return This builder for chaining.
     */
    public Builder clearName() {
      copyOnWrite();
      instance.clearName();
      return this;
    }
    /**
     * string name = 1 [json_name = "name"];
     * @param value The bytes for name to set.
     * @return This builder for chaining.
     */
    public Builder setNameBytes(
        com.google.protobuf.ByteString value) {
      copyOnWrite();
      instance.setNameBytes(value);
      return this;
    }

    /**
     * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
     */
    @java.lang.Override
    public java.util.List getEnumvalueList() {
      return java.util.Collections.unmodifiableList(
          instance.getEnumvalueList());
    }
    /**
     * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
     */
    @java.lang.Override
    public int getEnumvalueCount() {
      return instance.getEnumvalueCount();
    }/**
     * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
     */
    @java.lang.Override
    public com.google.protobuf.EnumValue getEnumvalue(int index) {
      return instance.getEnumvalue(index);
    }
    /**
     * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
     */
    public Builder setEnumvalue(
        int index, com.google.protobuf.EnumValue value) {
      copyOnWrite();
      instance.setEnumvalue(index, value);
      return this;
    }
    /**
     * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
     */
    public Builder setEnumvalue(
        int index, com.google.protobuf.EnumValue.Builder builderForValue) {
      copyOnWrite();
      instance.setEnumvalue(index,
          builderForValue.build());
      return this;
    }
    /**
     * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
     */
    public Builder addEnumvalue(com.google.protobuf.EnumValue value) {
      copyOnWrite();
      instance.addEnumvalue(value);
      return this;
    }
    /**
     * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
     */
    public Builder addEnumvalue(
        int index, com.google.protobuf.EnumValue value) {
      copyOnWrite();
      instance.addEnumvalue(index, value);
      return this;
    }
    /**
     * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
     */
    public Builder addEnumvalue(
        com.google.protobuf.EnumValue.Builder builderForValue) {
      copyOnWrite();
      instance.addEnumvalue(builderForValue.build());
      return this;
    }
    /**
     * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
     */
    public Builder addEnumvalue(
        int index, com.google.protobuf.EnumValue.Builder builderForValue) {
      copyOnWrite();
      instance.addEnumvalue(index,
          builderForValue.build());
      return this;
    }
    /**
     * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
     */
    public Builder addAllEnumvalue(
        java.lang.Iterable values) {
      copyOnWrite();
      instance.addAllEnumvalue(values);
      return this;
    }
    /**
     * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
     */
    public Builder clearEnumvalue() {
      copyOnWrite();
      instance.clearEnumvalue();
      return this;
    }
    /**
     * repeated .google.protobuf.EnumValue enumvalue = 2 [json_name = "enumvalue"];
     */
    public Builder removeEnumvalue(int index) {
      copyOnWrite();
      instance.removeEnumvalue(index);
      return this;
    }

    /**
     * repeated .google.protobuf.Option options = 3 [json_name = "options"];
     */
    @java.lang.Override
    public java.util.List getOptionsList() {
      return java.util.Collections.unmodifiableList(
          instance.getOptionsList());
    }
    /**
     * repeated .google.protobuf.Option options = 3 [json_name = "options"];
     */
    @java.lang.Override
    public int getOptionsCount() {
      return instance.getOptionsCount();
    }/**
     * repeated .google.protobuf.Option options = 3 [json_name = "options"];
     */
    @java.lang.Override
    public com.google.protobuf.Option getOptions(int index) {
      return instance.getOptions(index);
    }
    /**
     * repeated .google.protobuf.Option options = 3 [json_name = "options"];
     */
    public Builder setOptions(
        int index, com.google.protobuf.Option value) {
      copyOnWrite();
      instance.setOptions(index, value);
      return this;
    }
    /**
     * repeated .google.protobuf.Option options = 3 [json_name = "options"];
     */
    public Builder setOptions(
        int index, com.google.protobuf.Option.Builder builderForValue) {
      copyOnWrite();
      instance.setOptions(index,
          builderForValue.build());
      return this;
    }
    /**
     * repeated .google.protobuf.Option options = 3 [json_name = "options"];
     */
    public Builder addOptions(com.google.protobuf.Option value) {
      copyOnWrite();
      instance.addOptions(value);
      return this;
    }
    /**
     * repeated .google.protobuf.Option options = 3 [json_name = "options"];
     */
    public Builder addOptions(
        int index, com.google.protobuf.Option value) {
      copyOnWrite();
      instance.addOptions(index, value);
      return this;
    }
    /**
     * repeated .google.protobuf.Option options = 3 [json_name = "options"];
     */
    public Builder addOptions(
        com.google.protobuf.Option.Builder builderForValue) {
      copyOnWrite();
      instance.addOptions(builderForValue.build());
      return this;
    }
    /**
     * repeated .google.protobuf.Option options = 3 [json_name = "options"];
     */
    public Builder addOptions(
        int index, com.google.protobuf.Option.Builder builderForValue) {
      copyOnWrite();
      instance.addOptions(index,
          builderForValue.build());
      return this;
    }
    /**
     * repeated .google.protobuf.Option options = 3 [json_name = "options"];
     */
    public Builder addAllOptions(
        java.lang.Iterable values) {
      copyOnWrite();
      instance.addAllOptions(values);
      return this;
    }
    /**
     * repeated .google.protobuf.Option options = 3 [json_name = "options"];
     */
    public Builder clearOptions() {
      copyOnWrite();
      instance.clearOptions();
      return this;
    }
    /**
     * repeated .google.protobuf.Option options = 3 [json_name = "options"];
     */
    public Builder removeOptions(int index) {
      copyOnWrite();
      instance.removeOptions(index);
      return this;
    }

    /**
     * .google.protobuf.SourceContext source_context = 4 [json_name = "sourceContext"];
     */
    @java.lang.Override
    public boolean hasSourceContext() {
      return instance.hasSourceContext();
    }
    /**
     * .google.protobuf.SourceContext source_context = 4 [json_name = "sourceContext"];
     */
    @java.lang.Override
    public com.google.protobuf.SourceContext getSourceContext() {
      return instance.getSourceContext();
    }
    /**
     * .google.protobuf.SourceContext source_context = 4 [json_name = "sourceContext"];
     */
    public Builder setSourceContext(com.google.protobuf.SourceContext value) {
      copyOnWrite();
      instance.setSourceContext(value);
      return this;
      }
    /**
     * .google.protobuf.SourceContext source_context = 4 [json_name = "sourceContext"];
     */
    public Builder setSourceContext(
        com.google.protobuf.SourceContext.Builder builderForValue) {
      copyOnWrite();
      instance.setSourceContext(builderForValue.build());
      return this;
    }
    /**
     * .google.protobuf.SourceContext source_context = 4 [json_name = "sourceContext"];
     */
    public Builder mergeSourceContext(com.google.protobuf.SourceContext value) {
      copyOnWrite();
      instance.mergeSourceContext(value);
      return this;
    }
    /**
     * .google.protobuf.SourceContext source_context = 4 [json_name = "sourceContext"];
     */
    public Builder clearSourceContext() {  copyOnWrite();
      instance.clearSourceContext();
      return this;
    }

    /**
     * .google.protobuf.Syntax syntax = 5 [json_name = "syntax"];
     * @return The enum numeric value on the wire for syntax.
     */
    @java.lang.Override
    public int getSyntaxValue() {
      return instance.getSyntaxValue();
    }
    /**
     * .google.protobuf.Syntax syntax = 5 [json_name = "syntax"];
     * @param value The syntax to set.
     * @return This builder for chaining.
     */
    public Builder setSyntaxValue(int value) {
      copyOnWrite();
      instance.setSyntaxValue(value);
      return this;
    }
    /**
     * .google.protobuf.Syntax syntax = 5 [json_name = "syntax"];
     * @return The syntax.
     */
    @java.lang.Override
    public com.google.protobuf.Syntax getSyntax() {
      return instance.getSyntax();
    }
    /**
     * .google.protobuf.Syntax syntax = 5 [json_name = "syntax"];
     * @param value The enum numeric value on the wire for syntax to set.
     * @return This builder for chaining.
     */
    public Builder setSyntax(com.google.protobuf.Syntax value) {
      copyOnWrite();
      instance.setSyntax(value);
      return this;
    }
    /**
     * .google.protobuf.Syntax syntax = 5 [json_name = "syntax"];
     * @return This builder for chaining.
     */
    public Builder clearSyntax() {
      copyOnWrite();
      instance.clearSyntax();
      return this;
    }

    /**
     * string edition = 6 [json_name = "edition"];
     * @return The edition.
     */
    @java.lang.Override
    public java.lang.String getEdition() {
      return instance.getEdition();
    }
    /**
     * string edition = 6 [json_name = "edition"];
     * @return The bytes for edition.
     */
    @java.lang.Override
    public com.google.protobuf.ByteString
        getEditionBytes() {
      return instance.getEditionBytes();
    }
    /**
     * string edition = 6 [json_name = "edition"];
     * @param value The edition to set.
     * @return This builder for chaining.
     */
    public Builder setEdition(
        java.lang.String value) {
      copyOnWrite();
      instance.setEdition(value);
      return this;
    }
    /**
     * string edition = 6 [json_name = "edition"];
     * @return This builder for chaining.
     */
    public Builder clearEdition() {
      copyOnWrite();
      instance.clearEdition();
      return this;
    }
    /**
     * string edition = 6 [json_name = "edition"];
     * @param value The bytes for edition to set.
     * @return This builder for chaining.
     */
    public Builder setEditionBytes(
        com.google.protobuf.ByteString value) {
      copyOnWrite();
      instance.setEditionBytes(value);
      return this;
    }

    // @@protoc_insertion_point(builder_scope:google.protobuf.Enum)
  }
  @java.lang.Override
  @java.lang.SuppressWarnings({"unchecked", "fallthrough"})
  protected final java.lang.Object dynamicMethod(
      com.google.protobuf.GeneratedMessageLite.MethodToInvoke method,
      java.lang.Object arg0, java.lang.Object arg1) {
    switch (method) {
      case NEW_MUTABLE_INSTANCE: {
        return new com.google.protobuf.Enum();
      }
      case NEW_BUILDER: {
        return new Builder();
      }
      case BUILD_MESSAGE_INFO: {
          java.lang.Object[] objects = new java.lang.Object[] {
            "bitField0_",
            "name_",
            "enumvalue_",
            com.google.protobuf.EnumValue.class,
            "options_",
            com.google.protobuf.Option.class,
            "sourceContext_",
            "syntax_",
            "edition_",
          };
          java.lang.String info =
              "\u0000\u0006\u0000\u0001\u0001\u0006\u0006\u0000\u0002\u0000\u0001\u0208\u0002\u001b" +
              "\u0003\u001b\u0004\u1009\u0000\u0005\f\u0006\u0208";
          return newMessageInfo(DEFAULT_INSTANCE, info, objects);
      }
      // fall through
      case GET_DEFAULT_INSTANCE: {
        return DEFAULT_INSTANCE;
      }
      case GET_PARSER: {
        com.google.protobuf.Parser parser = PARSER;
        if (parser == null) {
          synchronized (com.google.protobuf.Enum.class) {
            parser = PARSER;
            if (parser == null) {
              parser =
                  new DefaultInstanceBasedParser(
                      DEFAULT_INSTANCE);
              PARSER = parser;
            }
          }
        }
        return parser;
    }
    case GET_MEMOIZED_IS_INITIALIZED: {
      return (byte) 1;
    }
    case SET_MEMOIZED_IS_INITIALIZED: {
      return null;
    }
    }
    throw new UnsupportedOperationException();
  }


  // @@protoc_insertion_point(class_scope:google.protobuf.Enum)
  private static final com.google.protobuf.Enum DEFAULT_INSTANCE;
  static {
    Enum defaultInstance = new Enum();
    // New instances are implicitly immutable so no need to make
    // immutable.
    DEFAULT_INSTANCE = defaultInstance;
    com.google.protobuf.GeneratedMessageLite.registerDefaultInstance(
      Enum.class, defaultInstance);
  }

  public static com.google.protobuf.Enum getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  private static volatile com.google.protobuf.Parser PARSER;

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy