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

io.milvus.grpc.ListDatabasesResponse Maven / Gradle / Ivy

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

package io.milvus.grpc;

/**
 * Protobuf type {@code milvus.proto.milvus.ListDatabasesResponse}
 */
public final class ListDatabasesResponse extends
    com.google.protobuf.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:milvus.proto.milvus.ListDatabasesResponse)
    ListDatabasesResponseOrBuilder {
private static final long serialVersionUID = 0L;
  // Use ListDatabasesResponse.newBuilder() to construct.
  private ListDatabasesResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private ListDatabasesResponse() {
    dbNames_ =
        com.google.protobuf.LazyStringArrayList.emptyList();
    createdTimestamp_ = emptyLongList();
  }

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

  public static final com.google.protobuf.Descriptors.Descriptor
      getDescriptor() {
    return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_ListDatabasesResponse_descriptor;
  }

  @java.lang.Override
  protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_ListDatabasesResponse_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            io.milvus.grpc.ListDatabasesResponse.class, io.milvus.grpc.ListDatabasesResponse.Builder.class);
  }

  private int bitField0_;
  public static final int STATUS_FIELD_NUMBER = 1;
  private io.milvus.grpc.Status status_;
  /**
   * .milvus.proto.common.Status status = 1;
   * @return Whether the status field is set.
   */
  @java.lang.Override
  public boolean hasStatus() {
    return ((bitField0_ & 0x00000001) != 0);
  }
  /**
   * .milvus.proto.common.Status status = 1;
   * @return The status.
   */
  @java.lang.Override
  public io.milvus.grpc.Status getStatus() {
    return status_ == null ? io.milvus.grpc.Status.getDefaultInstance() : status_;
  }
  /**
   * .milvus.proto.common.Status status = 1;
   */
  @java.lang.Override
  public io.milvus.grpc.StatusOrBuilder getStatusOrBuilder() {
    return status_ == null ? io.milvus.grpc.Status.getDefaultInstance() : status_;
  }

  public static final int DB_NAMES_FIELD_NUMBER = 2;
  @SuppressWarnings("serial")
  private com.google.protobuf.LazyStringArrayList dbNames_ =
      com.google.protobuf.LazyStringArrayList.emptyList();
  /**
   * repeated string db_names = 2;
   * @return A list containing the dbNames.
   */
  public com.google.protobuf.ProtocolStringList
      getDbNamesList() {
    return dbNames_;
  }
  /**
   * repeated string db_names = 2;
   * @return The count of dbNames.
   */
  public int getDbNamesCount() {
    return dbNames_.size();
  }
  /**
   * repeated string db_names = 2;
   * @param index The index of the element to return.
   * @return The dbNames at the given index.
   */
  public java.lang.String getDbNames(int index) {
    return dbNames_.get(index);
  }
  /**
   * repeated string db_names = 2;
   * @param index The index of the value to return.
   * @return The bytes of the dbNames at the given index.
   */
  public com.google.protobuf.ByteString
      getDbNamesBytes(int index) {
    return dbNames_.getByteString(index);
  }

  public static final int CREATED_TIMESTAMP_FIELD_NUMBER = 3;
  @SuppressWarnings("serial")
  private com.google.protobuf.Internal.LongList createdTimestamp_ =
      emptyLongList();
  /**
   * repeated uint64 created_timestamp = 3;
   * @return A list containing the createdTimestamp.
   */
  @java.lang.Override
  public java.util.List
      getCreatedTimestampList() {
    return createdTimestamp_;
  }
  /**
   * repeated uint64 created_timestamp = 3;
   * @return The count of createdTimestamp.
   */
  public int getCreatedTimestampCount() {
    return createdTimestamp_.size();
  }
  /**
   * repeated uint64 created_timestamp = 3;
   * @param index The index of the element to return.
   * @return The createdTimestamp at the given index.
   */
  public long getCreatedTimestamp(int index) {
    return createdTimestamp_.getLong(index);
  }
  private int createdTimestampMemoizedSerializedSize = -1;

  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 {
    getSerializedSize();
    if (((bitField0_ & 0x00000001) != 0)) {
      output.writeMessage(1, getStatus());
    }
    for (int i = 0; i < dbNames_.size(); i++) {
      com.google.protobuf.GeneratedMessageV3.writeString(output, 2, dbNames_.getRaw(i));
    }
    if (getCreatedTimestampList().size() > 0) {
      output.writeUInt32NoTag(26);
      output.writeUInt32NoTag(createdTimestampMemoizedSerializedSize);
    }
    for (int i = 0; i < createdTimestamp_.size(); i++) {
      output.writeUInt64NoTag(createdTimestamp_.getLong(i));
    }
    getUnknownFields().writeTo(output);
  }

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

    size = 0;
    if (((bitField0_ & 0x00000001) != 0)) {
      size += com.google.protobuf.CodedOutputStream
        .computeMessageSize(1, getStatus());
    }
    {
      int dataSize = 0;
      for (int i = 0; i < dbNames_.size(); i++) {
        dataSize += computeStringSizeNoTag(dbNames_.getRaw(i));
      }
      size += dataSize;
      size += 1 * getDbNamesList().size();
    }
    {
      int dataSize = 0;
      for (int i = 0; i < createdTimestamp_.size(); i++) {
        dataSize += com.google.protobuf.CodedOutputStream
          .computeUInt64SizeNoTag(createdTimestamp_.getLong(i));
      }
      size += dataSize;
      if (!getCreatedTimestampList().isEmpty()) {
        size += 1;
        size += com.google.protobuf.CodedOutputStream
            .computeInt32SizeNoTag(dataSize);
      }
      createdTimestampMemoizedSerializedSize = dataSize;
    }
    size += getUnknownFields().getSerializedSize();
    memoizedSize = size;
    return size;
  }

  @java.lang.Override
  public boolean equals(final java.lang.Object obj) {
    if (obj == this) {
     return true;
    }
    if (!(obj instanceof io.milvus.grpc.ListDatabasesResponse)) {
      return super.equals(obj);
    }
    io.milvus.grpc.ListDatabasesResponse other = (io.milvus.grpc.ListDatabasesResponse) obj;

    if (hasStatus() != other.hasStatus()) return false;
    if (hasStatus()) {
      if (!getStatus()
          .equals(other.getStatus())) return false;
    }
    if (!getDbNamesList()
        .equals(other.getDbNamesList())) return false;
    if (!getCreatedTimestampList()
        .equals(other.getCreatedTimestampList())) return false;
    if (!getUnknownFields().equals(other.getUnknownFields())) return false;
    return true;
  }

  @java.lang.Override
  public int hashCode() {
    if (memoizedHashCode != 0) {
      return memoizedHashCode;
    }
    int hash = 41;
    hash = (19 * hash) + getDescriptor().hashCode();
    if (hasStatus()) {
      hash = (37 * hash) + STATUS_FIELD_NUMBER;
      hash = (53 * hash) + getStatus().hashCode();
    }
    if (getDbNamesCount() > 0) {
      hash = (37 * hash) + DB_NAMES_FIELD_NUMBER;
      hash = (53 * hash) + getDbNamesList().hashCode();
    }
    if (getCreatedTimestampCount() > 0) {
      hash = (37 * hash) + CREATED_TIMESTAMP_FIELD_NUMBER;
      hash = (53 * hash) + getCreatedTimestampList().hashCode();
    }
    hash = (29 * hash) + getUnknownFields().hashCode();
    memoizedHashCode = hash;
    return hash;
  }

  public static io.milvus.grpc.ListDatabasesResponse parseFrom(
      java.nio.ByteBuffer data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static io.milvus.grpc.ListDatabasesResponse parseFrom(
      java.nio.ByteBuffer data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static io.milvus.grpc.ListDatabasesResponse parseFrom(
      com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static io.milvus.grpc.ListDatabasesResponse parseFrom(
      com.google.protobuf.ByteString data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static io.milvus.grpc.ListDatabasesResponse parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data);
  }
  public static io.milvus.grpc.ListDatabasesResponse parseFrom(
      byte[] data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return PARSER.parseFrom(data, extensionRegistry);
  }
  public static io.milvus.grpc.ListDatabasesResponse parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static io.milvus.grpc.ListDatabasesResponse 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 io.milvus.grpc.ListDatabasesResponse parseDelimitedFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseDelimitedWithIOException(PARSER, input);
  }

  public static io.milvus.grpc.ListDatabasesResponse 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 io.milvus.grpc.ListDatabasesResponse parseFrom(
      com.google.protobuf.CodedInputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageV3
        .parseWithIOException(PARSER, input);
  }
  public static io.milvus.grpc.ListDatabasesResponse 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(io.milvus.grpc.ListDatabasesResponse 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 milvus.proto.milvus.ListDatabasesResponse}
   */
  public static final class Builder extends
      com.google.protobuf.GeneratedMessageV3.Builder implements
      // @@protoc_insertion_point(builder_implements:milvus.proto.milvus.ListDatabasesResponse)
      io.milvus.grpc.ListDatabasesResponseOrBuilder {
    public static final com.google.protobuf.Descriptors.Descriptor
        getDescriptor() {
      return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_ListDatabasesResponse_descriptor;
    }

    @java.lang.Override
    protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
        internalGetFieldAccessorTable() {
      return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_ListDatabasesResponse_fieldAccessorTable
          .ensureFieldAccessorsInitialized(
              io.milvus.grpc.ListDatabasesResponse.class, io.milvus.grpc.ListDatabasesResponse.Builder.class);
    }

    // Construct using io.milvus.grpc.ListDatabasesResponse.newBuilder()
    private Builder() {
      maybeForceBuilderInitialization();
    }

    private Builder(
        com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
      super(parent);
      maybeForceBuilderInitialization();
    }
    private void maybeForceBuilderInitialization() {
      if (com.google.protobuf.GeneratedMessageV3
              .alwaysUseFieldBuilders) {
        getStatusFieldBuilder();
      }
    }
    @java.lang.Override
    public Builder clear() {
      super.clear();
      bitField0_ = 0;
      status_ = null;
      if (statusBuilder_ != null) {
        statusBuilder_.dispose();
        statusBuilder_ = null;
      }
      dbNames_ =
          com.google.protobuf.LazyStringArrayList.emptyList();
      createdTimestamp_ = emptyLongList();
      return this;
    }

    @java.lang.Override
    public com.google.protobuf.Descriptors.Descriptor
        getDescriptorForType() {
      return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_ListDatabasesResponse_descriptor;
    }

    @java.lang.Override
    public io.milvus.grpc.ListDatabasesResponse getDefaultInstanceForType() {
      return io.milvus.grpc.ListDatabasesResponse.getDefaultInstance();
    }

    @java.lang.Override
    public io.milvus.grpc.ListDatabasesResponse build() {
      io.milvus.grpc.ListDatabasesResponse result = buildPartial();
      if (!result.isInitialized()) {
        throw newUninitializedMessageException(result);
      }
      return result;
    }

    @java.lang.Override
    public io.milvus.grpc.ListDatabasesResponse buildPartial() {
      io.milvus.grpc.ListDatabasesResponse result = new io.milvus.grpc.ListDatabasesResponse(this);
      if (bitField0_ != 0) { buildPartial0(result); }
      onBuilt();
      return result;
    }

    private void buildPartial0(io.milvus.grpc.ListDatabasesResponse result) {
      int from_bitField0_ = bitField0_;
      int to_bitField0_ = 0;
      if (((from_bitField0_ & 0x00000001) != 0)) {
        result.status_ = statusBuilder_ == null
            ? status_
            : statusBuilder_.build();
        to_bitField0_ |= 0x00000001;
      }
      if (((from_bitField0_ & 0x00000002) != 0)) {
        dbNames_.makeImmutable();
        result.dbNames_ = dbNames_;
      }
      if (((from_bitField0_ & 0x00000004) != 0)) {
        createdTimestamp_.makeImmutable();
        result.createdTimestamp_ = createdTimestamp_;
      }
      result.bitField0_ |= to_bitField0_;
    }

    @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 io.milvus.grpc.ListDatabasesResponse) {
        return mergeFrom((io.milvus.grpc.ListDatabasesResponse)other);
      } else {
        super.mergeFrom(other);
        return this;
      }
    }

    public Builder mergeFrom(io.milvus.grpc.ListDatabasesResponse other) {
      if (other == io.milvus.grpc.ListDatabasesResponse.getDefaultInstance()) return this;
      if (other.hasStatus()) {
        mergeStatus(other.getStatus());
      }
      if (!other.dbNames_.isEmpty()) {
        if (dbNames_.isEmpty()) {
          dbNames_ = other.dbNames_;
          bitField0_ |= 0x00000002;
        } else {
          ensureDbNamesIsMutable();
          dbNames_.addAll(other.dbNames_);
        }
        onChanged();
      }
      if (!other.createdTimestamp_.isEmpty()) {
        if (createdTimestamp_.isEmpty()) {
          createdTimestamp_ = other.createdTimestamp_;
          createdTimestamp_.makeImmutable();
          bitField0_ |= 0x00000004;
        } else {
          ensureCreatedTimestampIsMutable();
          createdTimestamp_.addAll(other.createdTimestamp_);
        }
        onChanged();
      }
      this.mergeUnknownFields(other.getUnknownFields());
      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 {
      if (extensionRegistry == null) {
        throw new java.lang.NullPointerException();
      }
      try {
        boolean done = false;
        while (!done) {
          int tag = input.readTag();
          switch (tag) {
            case 0:
              done = true;
              break;
            case 10: {
              input.readMessage(
                  getStatusFieldBuilder().getBuilder(),
                  extensionRegistry);
              bitField0_ |= 0x00000001;
              break;
            } // case 10
            case 18: {
              java.lang.String s = input.readStringRequireUtf8();
              ensureDbNamesIsMutable();
              dbNames_.add(s);
              break;
            } // case 18
            case 24: {
              long v = input.readUInt64();
              ensureCreatedTimestampIsMutable();
              createdTimestamp_.addLong(v);
              break;
            } // case 24
            case 26: {
              int length = input.readRawVarint32();
              int limit = input.pushLimit(length);
              ensureCreatedTimestampIsMutable();
              while (input.getBytesUntilLimit() > 0) {
                createdTimestamp_.addLong(input.readUInt64());
              }
              input.popLimit(limit);
              break;
            } // case 26
            default: {
              if (!super.parseUnknownField(input, extensionRegistry, tag)) {
                done = true; // was an endgroup tag
              }
              break;
            } // default:
          } // switch (tag)
        } // while (!done)
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.unwrapIOException();
      } finally {
        onChanged();
      } // finally
      return this;
    }
    private int bitField0_;

    private io.milvus.grpc.Status status_;
    private com.google.protobuf.SingleFieldBuilderV3<
        io.milvus.grpc.Status, io.milvus.grpc.Status.Builder, io.milvus.grpc.StatusOrBuilder> statusBuilder_;
    /**
     * .milvus.proto.common.Status status = 1;
     * @return Whether the status field is set.
     */
    public boolean hasStatus() {
      return ((bitField0_ & 0x00000001) != 0);
    }
    /**
     * .milvus.proto.common.Status status = 1;
     * @return The status.
     */
    public io.milvus.grpc.Status getStatus() {
      if (statusBuilder_ == null) {
        return status_ == null ? io.milvus.grpc.Status.getDefaultInstance() : status_;
      } else {
        return statusBuilder_.getMessage();
      }
    }
    /**
     * .milvus.proto.common.Status status = 1;
     */
    public Builder setStatus(io.milvus.grpc.Status value) {
      if (statusBuilder_ == null) {
        if (value == null) {
          throw new NullPointerException();
        }
        status_ = value;
      } else {
        statusBuilder_.setMessage(value);
      }
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * .milvus.proto.common.Status status = 1;
     */
    public Builder setStatus(
        io.milvus.grpc.Status.Builder builderForValue) {
      if (statusBuilder_ == null) {
        status_ = builderForValue.build();
      } else {
        statusBuilder_.setMessage(builderForValue.build());
      }
      bitField0_ |= 0x00000001;
      onChanged();
      return this;
    }
    /**
     * .milvus.proto.common.Status status = 1;
     */
    public Builder mergeStatus(io.milvus.grpc.Status value) {
      if (statusBuilder_ == null) {
        if (((bitField0_ & 0x00000001) != 0) &&
          status_ != null &&
          status_ != io.milvus.grpc.Status.getDefaultInstance()) {
          getStatusBuilder().mergeFrom(value);
        } else {
          status_ = value;
        }
      } else {
        statusBuilder_.mergeFrom(value);
      }
      if (status_ != null) {
        bitField0_ |= 0x00000001;
        onChanged();
      }
      return this;
    }
    /**
     * .milvus.proto.common.Status status = 1;
     */
    public Builder clearStatus() {
      bitField0_ = (bitField0_ & ~0x00000001);
      status_ = null;
      if (statusBuilder_ != null) {
        statusBuilder_.dispose();
        statusBuilder_ = null;
      }
      onChanged();
      return this;
    }
    /**
     * .milvus.proto.common.Status status = 1;
     */
    public io.milvus.grpc.Status.Builder getStatusBuilder() {
      bitField0_ |= 0x00000001;
      onChanged();
      return getStatusFieldBuilder().getBuilder();
    }
    /**
     * .milvus.proto.common.Status status = 1;
     */
    public io.milvus.grpc.StatusOrBuilder getStatusOrBuilder() {
      if (statusBuilder_ != null) {
        return statusBuilder_.getMessageOrBuilder();
      } else {
        return status_ == null ?
            io.milvus.grpc.Status.getDefaultInstance() : status_;
      }
    }
    /**
     * .milvus.proto.common.Status status = 1;
     */
    private com.google.protobuf.SingleFieldBuilderV3<
        io.milvus.grpc.Status, io.milvus.grpc.Status.Builder, io.milvus.grpc.StatusOrBuilder> 
        getStatusFieldBuilder() {
      if (statusBuilder_ == null) {
        statusBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
            io.milvus.grpc.Status, io.milvus.grpc.Status.Builder, io.milvus.grpc.StatusOrBuilder>(
                getStatus(),
                getParentForChildren(),
                isClean());
        status_ = null;
      }
      return statusBuilder_;
    }

    private com.google.protobuf.LazyStringArrayList dbNames_ =
        com.google.protobuf.LazyStringArrayList.emptyList();
    private void ensureDbNamesIsMutable() {
      if (!dbNames_.isModifiable()) {
        dbNames_ = new com.google.protobuf.LazyStringArrayList(dbNames_);
      }
      bitField0_ |= 0x00000002;
    }
    /**
     * repeated string db_names = 2;
     * @return A list containing the dbNames.
     */
    public com.google.protobuf.ProtocolStringList
        getDbNamesList() {
      dbNames_.makeImmutable();
      return dbNames_;
    }
    /**
     * repeated string db_names = 2;
     * @return The count of dbNames.
     */
    public int getDbNamesCount() {
      return dbNames_.size();
    }
    /**
     * repeated string db_names = 2;
     * @param index The index of the element to return.
     * @return The dbNames at the given index.
     */
    public java.lang.String getDbNames(int index) {
      return dbNames_.get(index);
    }
    /**
     * repeated string db_names = 2;
     * @param index The index of the value to return.
     * @return The bytes of the dbNames at the given index.
     */
    public com.google.protobuf.ByteString
        getDbNamesBytes(int index) {
      return dbNames_.getByteString(index);
    }
    /**
     * repeated string db_names = 2;
     * @param index The index to set the value at.
     * @param value The dbNames to set.
     * @return This builder for chaining.
     */
    public Builder setDbNames(
        int index, java.lang.String value) {
      if (value == null) { throw new NullPointerException(); }
      ensureDbNamesIsMutable();
      dbNames_.set(index, value);
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     * repeated string db_names = 2;
     * @param value The dbNames to add.
     * @return This builder for chaining.
     */
    public Builder addDbNames(
        java.lang.String value) {
      if (value == null) { throw new NullPointerException(); }
      ensureDbNamesIsMutable();
      dbNames_.add(value);
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     * repeated string db_names = 2;
     * @param values The dbNames to add.
     * @return This builder for chaining.
     */
    public Builder addAllDbNames(
        java.lang.Iterable values) {
      ensureDbNamesIsMutable();
      com.google.protobuf.AbstractMessageLite.Builder.addAll(
          values, dbNames_);
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }
    /**
     * repeated string db_names = 2;
     * @return This builder for chaining.
     */
    public Builder clearDbNames() {
      dbNames_ =
        com.google.protobuf.LazyStringArrayList.emptyList();
      bitField0_ = (bitField0_ & ~0x00000002);;
      onChanged();
      return this;
    }
    /**
     * repeated string db_names = 2;
     * @param value The bytes of the dbNames to add.
     * @return This builder for chaining.
     */
    public Builder addDbNamesBytes(
        com.google.protobuf.ByteString value) {
      if (value == null) { throw new NullPointerException(); }
      checkByteStringIsUtf8(value);
      ensureDbNamesIsMutable();
      dbNames_.add(value);
      bitField0_ |= 0x00000002;
      onChanged();
      return this;
    }

    private com.google.protobuf.Internal.LongList createdTimestamp_ = emptyLongList();
    private void ensureCreatedTimestampIsMutable() {
      if (!createdTimestamp_.isModifiable()) {
        createdTimestamp_ = makeMutableCopy(createdTimestamp_);
      }
      bitField0_ |= 0x00000004;
    }
    /**
     * repeated uint64 created_timestamp = 3;
     * @return A list containing the createdTimestamp.
     */
    public java.util.List
        getCreatedTimestampList() {
      createdTimestamp_.makeImmutable();
      return createdTimestamp_;
    }
    /**
     * repeated uint64 created_timestamp = 3;
     * @return The count of createdTimestamp.
     */
    public int getCreatedTimestampCount() {
      return createdTimestamp_.size();
    }
    /**
     * repeated uint64 created_timestamp = 3;
     * @param index The index of the element to return.
     * @return The createdTimestamp at the given index.
     */
    public long getCreatedTimestamp(int index) {
      return createdTimestamp_.getLong(index);
    }
    /**
     * repeated uint64 created_timestamp = 3;
     * @param index The index to set the value at.
     * @param value The createdTimestamp to set.
     * @return This builder for chaining.
     */
    public Builder setCreatedTimestamp(
        int index, long value) {

      ensureCreatedTimestampIsMutable();
      createdTimestamp_.setLong(index, value);
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }
    /**
     * repeated uint64 created_timestamp = 3;
     * @param value The createdTimestamp to add.
     * @return This builder for chaining.
     */
    public Builder addCreatedTimestamp(long value) {

      ensureCreatedTimestampIsMutable();
      createdTimestamp_.addLong(value);
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }
    /**
     * repeated uint64 created_timestamp = 3;
     * @param values The createdTimestamp to add.
     * @return This builder for chaining.
     */
    public Builder addAllCreatedTimestamp(
        java.lang.Iterable values) {
      ensureCreatedTimestampIsMutable();
      com.google.protobuf.AbstractMessageLite.Builder.addAll(
          values, createdTimestamp_);
      bitField0_ |= 0x00000004;
      onChanged();
      return this;
    }
    /**
     * repeated uint64 created_timestamp = 3;
     * @return This builder for chaining.
     */
    public Builder clearCreatedTimestamp() {
      createdTimestamp_ = emptyLongList();
      bitField0_ = (bitField0_ & ~0x00000004);
      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:milvus.proto.milvus.ListDatabasesResponse)
  }

  // @@protoc_insertion_point(class_scope:milvus.proto.milvus.ListDatabasesResponse)
  private static final io.milvus.grpc.ListDatabasesResponse DEFAULT_INSTANCE;
  static {
    DEFAULT_INSTANCE = new io.milvus.grpc.ListDatabasesResponse();
  }

  public static io.milvus.grpc.ListDatabasesResponse getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  private static final com.google.protobuf.Parser
      PARSER = new com.google.protobuf.AbstractParser() {
    @java.lang.Override
    public ListDatabasesResponse parsePartialFrom(
        com.google.protobuf.CodedInputStream input,
        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
        throws com.google.protobuf.InvalidProtocolBufferException {
      Builder builder = newBuilder();
      try {
        builder.mergeFrom(input, extensionRegistry);
      } catch (com.google.protobuf.InvalidProtocolBufferException e) {
        throw e.setUnfinishedMessage(builder.buildPartial());
      } catch (com.google.protobuf.UninitializedMessageException e) {
        throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
      } catch (java.io.IOException e) {
        throw new com.google.protobuf.InvalidProtocolBufferException(e)
            .setUnfinishedMessage(builder.buildPartial());
      }
      return builder.buildPartial();
    }
  };

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

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

  @java.lang.Override
  public io.milvus.grpc.ListDatabasesResponse getDefaultInstanceForType() {
    return DEFAULT_INSTANCE;
  }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy