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

cz.proto.CompositeFieldSpecList Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: table_meta.proto

package cz.proto;

/**
 * Protobuf type {@code cz.proto.CompositeFieldSpecList}
 */
public final class CompositeFieldSpecList extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:cz.proto.CompositeFieldSpecList)
    CompositeFieldSpecListOrBuilder {
private static final long serialVersionUID = 0L;
  // Use CompositeFieldSpecList.newBuilder() to construct.
  private CompositeFieldSpecList(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private CompositeFieldSpecList() {
    specList_ = java.util.Collections.emptyList();
  }

  @java.lang.Override
  @SuppressWarnings({"unused"})
  protected java.lang.Object newInstance(
      UnusedPrivateParameter unused) {
    return new CompositeFieldSpecList();
  }

  @java.lang.Override
  public final com.google.protobuf.UnknownFieldSet
  getUnknownFields() {
    return this.unknownFields;
  }
  private CompositeFieldSpecList(
      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 10: {
            if (!((mutable_bitField0_ & 0x00000001) != 0)) {
              specList_ = new java.util.ArrayList();
              mutable_bitField0_ |= 0x00000001;
            }
            specList_.add(
                input.readMessage(cz.proto.FieldSpecList.parser(), extensionRegistry));
            break;
          }
          case 16: {

            currentSpecId_ = input.readUInt32();
            break;
          }
          default: {
            if (!parseUnknownField(
                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 {
      if (((mutable_bitField0_ & 0x00000001) != 0)) {
        specList_ = java.util.Collections.unmodifiableList(specList_);
      }
      this.unknownFields = unknownFields.build();
      makeExtensionsImmutable();
    }
  }
  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return cz.proto.TableMetaOuterClass.internal_static_cz_proto_CompositeFieldSpecList_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return cz.proto.TableMetaOuterClass.internal_static_cz_proto_CompositeFieldSpecList_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            cz.proto.CompositeFieldSpecList.class, cz.proto.CompositeFieldSpecList.Builder.class);
  }

  public static final int SPEC_LIST_FIELD_NUMBER = 1;
  private java.util.List specList_;
  /**
   * repeated .cz.proto.FieldSpecList spec_list = 1;
   */
  @java.lang.Override
  public java.util.List getSpecListList() {
    return specList_;
  }
  /**
   * repeated .cz.proto.FieldSpecList spec_list = 1;
   */
  @java.lang.Override
  public java.util.List 
      getSpecListOrBuilderList() {
    return specList_;
  }
  /**
   * repeated .cz.proto.FieldSpecList spec_list = 1;
   */
  @java.lang.Override
  public int getSpecListCount() {
    return specList_.size();
  }
  /**
   * repeated .cz.proto.FieldSpecList spec_list = 1;
   */
  @java.lang.Override
  public cz.proto.FieldSpecList getSpecList(int index) {
    return specList_.get(index);
  }
  /**
   * repeated .cz.proto.FieldSpecList spec_list = 1;
   */
  @java.lang.Override
  public cz.proto.FieldSpecListOrBuilder getSpecListOrBuilder(
      int index) {
    return specList_.get(index);
  }

  public static final int CURRENT_SPEC_ID_FIELD_NUMBER = 2;
  private int currentSpecId_;
  /**
   * uint32 current_spec_id = 2;
   * @return The currentSpecId.
   */
  @java.lang.Override
  public int getCurrentSpecId() {
    return currentSpecId_;
  }

  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 {
    for (int i = 0; i < specList_.size(); i++) {
      output.writeMessage(1, specList_.get(i));
    }
    if (currentSpecId_ != 0) {
      output.writeUInt32(2, currentSpecId_);
    }
    unknownFields.writeTo(output);
  }

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

    size = 0;
    for (int i = 0; i < specList_.size(); i++) {
      size += com.google.protobuf.CodedOutputStream
        .computeMessageSize(1, specList_.get(i));
    }
    if (currentSpecId_ != 0) {
      size += com.google.protobuf.CodedOutputStream
        .computeUInt32Size(2, currentSpecId_);
    }
    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 cz.proto.CompositeFieldSpecList)) {
      return super.equals(obj);
    }
    cz.proto.CompositeFieldSpecList other = (cz.proto.CompositeFieldSpecList) obj;

    if (!getSpecListList()
        .equals(other.getSpecListList())) return false;
    if (getCurrentSpecId()
        != other.getCurrentSpecId()) return false;
    if (!unknownFields.equals(other.unknownFields)) return false;
    return true;
  }

  @java.lang.Override
  public int hashCode() {
    if (memoizedHashCode != 0) {
      return memoizedHashCode;
    }
    int hash = 41;
    hash = (19 * hash) + getDescriptor().hashCode();
    if (getSpecListCount() > 0) {
      hash = (37 * hash) + SPEC_LIST_FIELD_NUMBER;
      hash = (53 * hash) + getSpecListList().hashCode();
    }
    hash = (37 * hash) + CURRENT_SPEC_ID_FIELD_NUMBER;
    hash = (53 * hash) + getCurrentSpecId();
    hash = (29 * hash) + unknownFields.hashCode();
    memoizedHashCode = hash;
    return hash;
  }

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

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return cz.proto.TableMetaOuterClass.internal_static_cz_proto_CompositeFieldSpecList_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              cz.proto.CompositeFieldSpecList.class, cz.proto.CompositeFieldSpecList.Builder.class);
    }

    // Construct using cz.proto.CompositeFieldSpecList.newBuilder()
    private Builder() {
      maybeForceBuilderInitialization();
    }

    private Builder(
        com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
      super(parent);
      maybeForceBuilderInitialization();
    }
    private void maybeForceBuilderInitialization() {
      if (com.google.protobuf.GeneratedMessageV3
              .alwaysUseFieldBuilders) {
        getSpecListFieldBuilder();
      }
    }
    @java.lang.Override
    public Builder clear() {
      super.clear();
      if (specListBuilder_ == null) {
        specList_ = java.util.Collections.emptyList();
        bitField0_ = (bitField0_ & ~0x00000001);
      } else {
        specListBuilder_.clear();
      }
      currentSpecId_ = 0;

      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor
        getDescriptorForType() {
      return cz.proto.TableMetaOuterClass.internal_static_cz_proto_CompositeFieldSpecList_descriptor;
    }

    @java.lang.Override
    public cz.proto.CompositeFieldSpecList getDefaultInstanceForType() {
      return cz.proto.CompositeFieldSpecList.getDefaultInstance();
    }

    @java.lang.Override
    public cz.proto.CompositeFieldSpecList build() {
      cz.proto.CompositeFieldSpecList result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    @java.lang.Override
    public cz.proto.CompositeFieldSpecList buildPartial() {
      cz.proto.CompositeFieldSpecList result = new cz.proto.CompositeFieldSpecList(this);
      int from_bitField0_ = bitField0_;
      if (specListBuilder_ == null) {
        if (((bitField0_ & 0x00000001) != 0)) {
          specList_ = java.util.Collections.unmodifiableList(specList_);
          bitField0_ = (bitField0_ & ~0x00000001);
        }
        result.specList_ = specList_;
      } else {
        result.specList_ = specListBuilder_.build();
      }
      result.currentSpecId_ = currentSpecId_;
      onBuilt();
      return result;
    }

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

    public Builder mergeFrom(cz.proto.CompositeFieldSpecList other) {
      if (other == cz.proto.CompositeFieldSpecList.getDefaultInstance()) return this;
      if (specListBuilder_ == null) {
        if (!other.specList_.isEmpty()) {
          if (specList_.isEmpty()) {
            specList_ = other.specList_;
            bitField0_ = (bitField0_ & ~0x00000001);
          } else {
            ensureSpecListIsMutable();
            specList_.addAll(other.specList_);
          }
          onChanged();
        }
      } else {
        if (!other.specList_.isEmpty()) {
          if (specListBuilder_.isEmpty()) {
            specListBuilder_.dispose();
            specListBuilder_ = null;
            specList_ = other.specList_;
            bitField0_ = (bitField0_ & ~0x00000001);
            specListBuilder_ = 
              com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
                 getSpecListFieldBuilder() : null;
          } else {
            specListBuilder_.addAllMessages(other.specList_);
          }
        }
      }
      if (other.getCurrentSpecId() != 0) {
        setCurrentSpecId(other.getCurrentSpecId());
      }
      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 {
      cz.proto.CompositeFieldSpecList parsedMessage = null;
      try {
        parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        parsedMessage = (cz.proto.CompositeFieldSpecList) e.getUnfinishedMessage();
        throw e.unwrapIOException();
      } finally {
        if (parsedMessage != null) {
          mergeFrom(parsedMessage);
        }
      }
      return this;
    }
    private int bitField0_;

    private java.util.List specList_ =
      java.util.Collections.emptyList();
    private void ensureSpecListIsMutable() {
      if (!((bitField0_ & 0x00000001) != 0)) {
        specList_ = new java.util.ArrayList(specList_);
        bitField0_ |= 0x00000001;
       }
    }

    private com.google.protobuf.RepeatedFieldBuilderV3<
        cz.proto.FieldSpecList, cz.proto.FieldSpecList.Builder, cz.proto.FieldSpecListOrBuilder> specListBuilder_;

    /**
     * repeated .cz.proto.FieldSpecList spec_list = 1;
     */
    public java.util.List getSpecListList() {
      if (specListBuilder_ == null) {
        return java.util.Collections.unmodifiableList(specList_);
      } else {
        return specListBuilder_.getMessageList();
      }
    }
    /**
     * repeated .cz.proto.FieldSpecList spec_list = 1;
     */
    public int getSpecListCount() {
      if (specListBuilder_ == null) {
        return specList_.size();
      } else {
        return specListBuilder_.getCount();
      }
    }
    /**
     * repeated .cz.proto.FieldSpecList spec_list = 1;
     */
    public cz.proto.FieldSpecList getSpecList(int index) {
      if (specListBuilder_ == null) {
        return specList_.get(index);
      } else {
        return specListBuilder_.getMessage(index);
      }
    }
    /**
     * repeated .cz.proto.FieldSpecList spec_list = 1;
     */
    public Builder setSpecList(
        int index, cz.proto.FieldSpecList value) {
      if (specListBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureSpecListIsMutable();
        specList_.set(index, value);
        onChanged();
      } else {
        specListBuilder_.setMessage(index, value);
      }
      return this;
    }
    /**
     * repeated .cz.proto.FieldSpecList spec_list = 1;
     */
    public Builder setSpecList(
        int index, cz.proto.FieldSpecList.Builder builderForValue) {
      if (specListBuilder_ == null) {
        ensureSpecListIsMutable();
        specList_.set(index, builderForValue.build());
        onChanged();
      } else {
        specListBuilder_.setMessage(index, builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .cz.proto.FieldSpecList spec_list = 1;
     */
    public Builder addSpecList(cz.proto.FieldSpecList value) {
      if (specListBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureSpecListIsMutable();
        specList_.add(value);
        onChanged();
      } else {
        specListBuilder_.addMessage(value);
      }
      return this;
    }
    /**
     * repeated .cz.proto.FieldSpecList spec_list = 1;
     */
    public Builder addSpecList(
        int index, cz.proto.FieldSpecList value) {
      if (specListBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        ensureSpecListIsMutable();
        specList_.add(index, value);
        onChanged();
      } else {
        specListBuilder_.addMessage(index, value);
      }
      return this;
    }
    /**
     * repeated .cz.proto.FieldSpecList spec_list = 1;
     */
    public Builder addSpecList(
        cz.proto.FieldSpecList.Builder builderForValue) {
      if (specListBuilder_ == null) {
        ensureSpecListIsMutable();
        specList_.add(builderForValue.build());
        onChanged();
      } else {
        specListBuilder_.addMessage(builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .cz.proto.FieldSpecList spec_list = 1;
     */
    public Builder addSpecList(
        int index, cz.proto.FieldSpecList.Builder builderForValue) {
      if (specListBuilder_ == null) {
        ensureSpecListIsMutable();
        specList_.add(index, builderForValue.build());
        onChanged();
      } else {
        specListBuilder_.addMessage(index, builderForValue.build());
      }
      return this;
    }
    /**
     * repeated .cz.proto.FieldSpecList spec_list = 1;
     */
    public Builder addAllSpecList(
        java.lang.Iterable values) {
      if (specListBuilder_ == null) {
        ensureSpecListIsMutable();
        com.google.protobuf.AbstractMessageLite.Builder.addAll(
            values, specList_);
        onChanged();
      } else {
        specListBuilder_.addAllMessages(values);
      }
      return this;
    }
    /**
     * repeated .cz.proto.FieldSpecList spec_list = 1;
     */
    public Builder clearSpecList() {
      if (specListBuilder_ == null) {
        specList_ = java.util.Collections.emptyList();
        bitField0_ = (bitField0_ & ~0x00000001);
        onChanged();
      } else {
        specListBuilder_.clear();
      }
      return this;
    }
    /**
     * repeated .cz.proto.FieldSpecList spec_list = 1;
     */
    public Builder removeSpecList(int index) {
      if (specListBuilder_ == null) {
        ensureSpecListIsMutable();
        specList_.remove(index);
        onChanged();
      } else {
        specListBuilder_.remove(index);
      }
      return this;
    }
    /**
     * repeated .cz.proto.FieldSpecList spec_list = 1;
     */
    public cz.proto.FieldSpecList.Builder getSpecListBuilder(
        int index) {
      return getSpecListFieldBuilder().getBuilder(index);
    }
    /**
     * repeated .cz.proto.FieldSpecList spec_list = 1;
     */
    public cz.proto.FieldSpecListOrBuilder getSpecListOrBuilder(
        int index) {
      if (specListBuilder_ == null) {
        return specList_.get(index);  } else {
        return specListBuilder_.getMessageOrBuilder(index);
      }
    }
    /**
     * repeated .cz.proto.FieldSpecList spec_list = 1;
     */
    public java.util.List 
         getSpecListOrBuilderList() {
      if (specListBuilder_ != null) {
        return specListBuilder_.getMessageOrBuilderList();
      } else {
        return java.util.Collections.unmodifiableList(specList_);
      }
    }
    /**
     * repeated .cz.proto.FieldSpecList spec_list = 1;
     */
    public cz.proto.FieldSpecList.Builder addSpecListBuilder() {
      return getSpecListFieldBuilder().addBuilder(
          cz.proto.FieldSpecList.getDefaultInstance());
    }
    /**
     * repeated .cz.proto.FieldSpecList spec_list = 1;
     */
    public cz.proto.FieldSpecList.Builder addSpecListBuilder(
        int index) {
      return getSpecListFieldBuilder().addBuilder(
          index, cz.proto.FieldSpecList.getDefaultInstance());
    }
    /**
     * repeated .cz.proto.FieldSpecList spec_list = 1;
     */
    public java.util.List 
         getSpecListBuilderList() {
      return getSpecListFieldBuilder().getBuilderList();
    }
    private com.google.protobuf.RepeatedFieldBuilderV3<
        cz.proto.FieldSpecList, cz.proto.FieldSpecList.Builder, cz.proto.FieldSpecListOrBuilder> 
        getSpecListFieldBuilder() {
      if (specListBuilder_ == null) {
        specListBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
            cz.proto.FieldSpecList, cz.proto.FieldSpecList.Builder, cz.proto.FieldSpecListOrBuilder>(
                specList_,
                ((bitField0_ & 0x00000001) != 0),
                getParentForChildren(),
                isClean());
        specList_ = null;
      }
      return specListBuilder_;
    }

    private int currentSpecId_ ;
    /**
     * uint32 current_spec_id = 2;
     * @return The currentSpecId.
     */
    @java.lang.Override
    public int getCurrentSpecId() {
      return currentSpecId_;
    }
    /**
     * uint32 current_spec_id = 2;
     * @param value The currentSpecId to set.
     * @return This builder for chaining.
     */
    public Builder setCurrentSpecId(int value) {
      
      currentSpecId_ = value;
      onChanged();
      return this;
    }
    /**
     * uint32 current_spec_id = 2;
     * @return This builder for chaining.
     */
    public Builder clearCurrentSpecId() {
      
      currentSpecId_ = 0;
      onChanged();
      return this;
    }
    @java.lang.Override
    public final Builder setUnknownFields(
        final com.google.protobuf.UnknownFieldSet unknownFields) {
      return super.setUnknownFields(unknownFields);
    }

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


    // @@protoc_insertion_point(builder_scope:cz.proto.CompositeFieldSpecList)
  }

  // @@protoc_insertion_point(class_scope:cz.proto.CompositeFieldSpecList)
  private static final cz.proto.CompositeFieldSpecList DEFAULT_INSTANCE;
  static {
    DEFAULT_INSTANCE = new cz.proto.CompositeFieldSpecList();
  }

  public static cz.proto.CompositeFieldSpecList getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

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

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy