io.milvus.grpc.ShowPartitionsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of milvus-sdk-java Show documentation
Show all versions of milvus-sdk-java Show documentation
Java SDK for Milvus, a distributed high-performance vector database.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: milvus.proto
package io.milvus.grpc;
/**
*
*
* List all partitions for particular collection
*
*
* Protobuf type {@code milvus.proto.milvus.ShowPartitionsRequest}
*/
public final class ShowPartitionsRequest extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:milvus.proto.milvus.ShowPartitionsRequest)
ShowPartitionsRequestOrBuilder {
private static final long serialVersionUID = 0L;
// Use ShowPartitionsRequest.newBuilder() to construct.
private ShowPartitionsRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private ShowPartitionsRequest() {
dbName_ = "";
collectionName_ = "";
partitionNames_ =
com.google.protobuf.LazyStringArrayList.emptyList();
type_ = 0;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new ShowPartitionsRequest();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_ShowPartitionsRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_ShowPartitionsRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.milvus.grpc.ShowPartitionsRequest.class, io.milvus.grpc.ShowPartitionsRequest.Builder.class);
}
private int bitField0_;
public static final int BASE_FIELD_NUMBER = 1;
private io.milvus.grpc.MsgBase base_;
/**
*
* Not useful for now
*
*
* .milvus.proto.common.MsgBase base = 1;
* @return Whether the base field is set.
*/
@java.lang.Override
public boolean hasBase() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
* Not useful for now
*
*
* .milvus.proto.common.MsgBase base = 1;
* @return The base.
*/
@java.lang.Override
public io.milvus.grpc.MsgBase getBase() {
return base_ == null ? io.milvus.grpc.MsgBase.getDefaultInstance() : base_;
}
/**
*
* Not useful for now
*
*
* .milvus.proto.common.MsgBase base = 1;
*/
@java.lang.Override
public io.milvus.grpc.MsgBaseOrBuilder getBaseOrBuilder() {
return base_ == null ? io.milvus.grpc.MsgBase.getDefaultInstance() : base_;
}
public static final int DB_NAME_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private volatile java.lang.Object dbName_ = "";
/**
* string db_name = 2;
* @return The dbName.
*/
@java.lang.Override
public java.lang.String getDbName() {
java.lang.Object ref = dbName_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
dbName_ = s;
return s;
}
}
/**
* string db_name = 2;
* @return The bytes for dbName.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getDbNameBytes() {
java.lang.Object ref = dbName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
dbName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int COLLECTION_NAME_FIELD_NUMBER = 3;
@SuppressWarnings("serial")
private volatile java.lang.Object collectionName_ = "";
/**
*
* The collection name you want to describe, you can pass collection_name or collectionID
*
*
* string collection_name = 3;
* @return The collectionName.
*/
@java.lang.Override
public java.lang.String getCollectionName() {
java.lang.Object ref = collectionName_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
collectionName_ = s;
return s;
}
}
/**
*
* The collection name you want to describe, you can pass collection_name or collectionID
*
*
* string collection_name = 3;
* @return The bytes for collectionName.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getCollectionNameBytes() {
java.lang.Object ref = collectionName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
collectionName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int COLLECTIONID_FIELD_NUMBER = 4;
private long collectionID_ = 0L;
/**
*
* The collection id in milvus
*
*
* int64 collectionID = 4;
* @return The collectionID.
*/
@java.lang.Override
public long getCollectionID() {
return collectionID_;
}
public static final int PARTITION_NAMES_FIELD_NUMBER = 5;
@SuppressWarnings("serial")
private com.google.protobuf.LazyStringArrayList partitionNames_ =
com.google.protobuf.LazyStringArrayList.emptyList();
/**
*
* When type is InMemory, will return these patitions's inMemory_percentages.(Optional)
*
*
* repeated string partition_names = 5;
* @return A list containing the partitionNames.
*/
public com.google.protobuf.ProtocolStringList
getPartitionNamesList() {
return partitionNames_;
}
/**
*
* When type is InMemory, will return these patitions's inMemory_percentages.(Optional)
*
*
* repeated string partition_names = 5;
* @return The count of partitionNames.
*/
public int getPartitionNamesCount() {
return partitionNames_.size();
}
/**
*
* When type is InMemory, will return these patitions's inMemory_percentages.(Optional)
*
*
* repeated string partition_names = 5;
* @param index The index of the element to return.
* @return The partitionNames at the given index.
*/
public java.lang.String getPartitionNames(int index) {
return partitionNames_.get(index);
}
/**
*
* When type is InMemory, will return these patitions's inMemory_percentages.(Optional)
*
*
* repeated string partition_names = 5;
* @param index The index of the value to return.
* @return The bytes of the partitionNames at the given index.
*/
public com.google.protobuf.ByteString
getPartitionNamesBytes(int index) {
return partitionNames_.getByteString(index);
}
public static final int TYPE_FIELD_NUMBER = 6;
private int type_ = 0;
/**
*
* Decide return Loaded partitions or All partitions(Optional)
* Deprecated: use GetLoadingProgress rpc instead
*
*
* .milvus.proto.milvus.ShowType type = 6 [deprecated = true];
* @deprecated milvus.proto.milvus.ShowPartitionsRequest.type is deprecated.
* See milvus.proto;l=653
* @return The enum numeric value on the wire for type.
*/
@java.lang.Override @java.lang.Deprecated public int getTypeValue() {
return type_;
}
/**
*
* Decide return Loaded partitions or All partitions(Optional)
* Deprecated: use GetLoadingProgress rpc instead
*
*
* .milvus.proto.milvus.ShowType type = 6 [deprecated = true];
* @deprecated milvus.proto.milvus.ShowPartitionsRequest.type is deprecated.
* See milvus.proto;l=653
* @return The type.
*/
@java.lang.Override @java.lang.Deprecated public io.milvus.grpc.ShowType getType() {
io.milvus.grpc.ShowType result = io.milvus.grpc.ShowType.forNumber(type_);
return result == null ? io.milvus.grpc.ShowType.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 (((bitField0_ & 0x00000001) != 0)) {
output.writeMessage(1, getBase());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(dbName_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, dbName_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(collectionName_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, collectionName_);
}
if (collectionID_ != 0L) {
output.writeInt64(4, collectionID_);
}
for (int i = 0; i < partitionNames_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 5, partitionNames_.getRaw(i));
}
if (type_ != io.milvus.grpc.ShowType.All.getNumber()) {
output.writeEnum(6, type_);
}
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, getBase());
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(dbName_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, dbName_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(collectionName_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, collectionName_);
}
if (collectionID_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(4, collectionID_);
}
{
int dataSize = 0;
for (int i = 0; i < partitionNames_.size(); i++) {
dataSize += computeStringSizeNoTag(partitionNames_.getRaw(i));
}
size += dataSize;
size += 1 * getPartitionNamesList().size();
}
if (type_ != io.milvus.grpc.ShowType.All.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(6, type_);
}
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.ShowPartitionsRequest)) {
return super.equals(obj);
}
io.milvus.grpc.ShowPartitionsRequest other = (io.milvus.grpc.ShowPartitionsRequest) obj;
if (hasBase() != other.hasBase()) return false;
if (hasBase()) {
if (!getBase()
.equals(other.getBase())) return false;
}
if (!getDbName()
.equals(other.getDbName())) return false;
if (!getCollectionName()
.equals(other.getCollectionName())) return false;
if (getCollectionID()
!= other.getCollectionID()) return false;
if (!getPartitionNamesList()
.equals(other.getPartitionNamesList())) return false;
if (type_ != other.type_) 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 (hasBase()) {
hash = (37 * hash) + BASE_FIELD_NUMBER;
hash = (53 * hash) + getBase().hashCode();
}
hash = (37 * hash) + DB_NAME_FIELD_NUMBER;
hash = (53 * hash) + getDbName().hashCode();
hash = (37 * hash) + COLLECTION_NAME_FIELD_NUMBER;
hash = (53 * hash) + getCollectionName().hashCode();
hash = (37 * hash) + COLLECTIONID_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getCollectionID());
if (getPartitionNamesCount() > 0) {
hash = (37 * hash) + PARTITION_NAMES_FIELD_NUMBER;
hash = (53 * hash) + getPartitionNamesList().hashCode();
}
hash = (37 * hash) + TYPE_FIELD_NUMBER;
hash = (53 * hash) + type_;
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.milvus.grpc.ShowPartitionsRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.milvus.grpc.ShowPartitionsRequest 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.ShowPartitionsRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.milvus.grpc.ShowPartitionsRequest 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.ShowPartitionsRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.milvus.grpc.ShowPartitionsRequest parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.milvus.grpc.ShowPartitionsRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.milvus.grpc.ShowPartitionsRequest 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.ShowPartitionsRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.milvus.grpc.ShowPartitionsRequest 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.ShowPartitionsRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.milvus.grpc.ShowPartitionsRequest 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.ShowPartitionsRequest 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;
}
/**
*
*
* List all partitions for particular collection
*
*
* Protobuf type {@code milvus.proto.milvus.ShowPartitionsRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:milvus.proto.milvus.ShowPartitionsRequest)
io.milvus.grpc.ShowPartitionsRequestOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_ShowPartitionsRequest_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_ShowPartitionsRequest_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.milvus.grpc.ShowPartitionsRequest.class, io.milvus.grpc.ShowPartitionsRequest.Builder.class);
}
// Construct using io.milvus.grpc.ShowPartitionsRequest.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getBaseFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
base_ = null;
if (baseBuilder_ != null) {
baseBuilder_.dispose();
baseBuilder_ = null;
}
dbName_ = "";
collectionName_ = "";
collectionID_ = 0L;
partitionNames_ =
com.google.protobuf.LazyStringArrayList.emptyList();
type_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_ShowPartitionsRequest_descriptor;
}
@java.lang.Override
public io.milvus.grpc.ShowPartitionsRequest getDefaultInstanceForType() {
return io.milvus.grpc.ShowPartitionsRequest.getDefaultInstance();
}
@java.lang.Override
public io.milvus.grpc.ShowPartitionsRequest build() {
io.milvus.grpc.ShowPartitionsRequest result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.milvus.grpc.ShowPartitionsRequest buildPartial() {
io.milvus.grpc.ShowPartitionsRequest result = new io.milvus.grpc.ShowPartitionsRequest(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(io.milvus.grpc.ShowPartitionsRequest result) {
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.base_ = baseBuilder_ == null
? base_
: baseBuilder_.build();
to_bitField0_ |= 0x00000001;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.dbName_ = dbName_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.collectionName_ = collectionName_;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.collectionID_ = collectionID_;
}
if (((from_bitField0_ & 0x00000010) != 0)) {
partitionNames_.makeImmutable();
result.partitionNames_ = partitionNames_;
}
if (((from_bitField0_ & 0x00000020) != 0)) {
result.type_ = type_;
}
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.ShowPartitionsRequest) {
return mergeFrom((io.milvus.grpc.ShowPartitionsRequest)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.milvus.grpc.ShowPartitionsRequest other) {
if (other == io.milvus.grpc.ShowPartitionsRequest.getDefaultInstance()) return this;
if (other.hasBase()) {
mergeBase(other.getBase());
}
if (!other.getDbName().isEmpty()) {
dbName_ = other.dbName_;
bitField0_ |= 0x00000002;
onChanged();
}
if (!other.getCollectionName().isEmpty()) {
collectionName_ = other.collectionName_;
bitField0_ |= 0x00000004;
onChanged();
}
if (other.getCollectionID() != 0L) {
setCollectionID(other.getCollectionID());
}
if (!other.partitionNames_.isEmpty()) {
if (partitionNames_.isEmpty()) {
partitionNames_ = other.partitionNames_;
bitField0_ |= 0x00000010;
} else {
ensurePartitionNamesIsMutable();
partitionNames_.addAll(other.partitionNames_);
}
onChanged();
}
if (other.type_ != 0) {
setTypeValue(other.getTypeValue());
}
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(
getBaseFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
case 18: {
dbName_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 18
case 26: {
collectionName_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000004;
break;
} // case 26
case 32: {
collectionID_ = input.readInt64();
bitField0_ |= 0x00000008;
break;
} // case 32
case 42: {
java.lang.String s = input.readStringRequireUtf8();
ensurePartitionNamesIsMutable();
partitionNames_.add(s);
break;
} // case 42
case 48: {
type_ = input.readEnum();
bitField0_ |= 0x00000020;
break;
} // case 48
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.MsgBase base_;
private com.google.protobuf.SingleFieldBuilderV3<
io.milvus.grpc.MsgBase, io.milvus.grpc.MsgBase.Builder, io.milvus.grpc.MsgBaseOrBuilder> baseBuilder_;
/**
*
* Not useful for now
*
*
* .milvus.proto.common.MsgBase base = 1;
* @return Whether the base field is set.
*/
public boolean hasBase() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
* Not useful for now
*
*
* .milvus.proto.common.MsgBase base = 1;
* @return The base.
*/
public io.milvus.grpc.MsgBase getBase() {
if (baseBuilder_ == null) {
return base_ == null ? io.milvus.grpc.MsgBase.getDefaultInstance() : base_;
} else {
return baseBuilder_.getMessage();
}
}
/**
*
* Not useful for now
*
*
* .milvus.proto.common.MsgBase base = 1;
*/
public Builder setBase(io.milvus.grpc.MsgBase value) {
if (baseBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
base_ = value;
} else {
baseBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* Not useful for now
*
*
* .milvus.proto.common.MsgBase base = 1;
*/
public Builder setBase(
io.milvus.grpc.MsgBase.Builder builderForValue) {
if (baseBuilder_ == null) {
base_ = builderForValue.build();
} else {
baseBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* Not useful for now
*
*
* .milvus.proto.common.MsgBase base = 1;
*/
public Builder mergeBase(io.milvus.grpc.MsgBase value) {
if (baseBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0) &&
base_ != null &&
base_ != io.milvus.grpc.MsgBase.getDefaultInstance()) {
getBaseBuilder().mergeFrom(value);
} else {
base_ = value;
}
} else {
baseBuilder_.mergeFrom(value);
}
if (base_ != null) {
bitField0_ |= 0x00000001;
onChanged();
}
return this;
}
/**
*
* Not useful for now
*
*
* .milvus.proto.common.MsgBase base = 1;
*/
public Builder clearBase() {
bitField0_ = (bitField0_ & ~0x00000001);
base_ = null;
if (baseBuilder_ != null) {
baseBuilder_.dispose();
baseBuilder_ = null;
}
onChanged();
return this;
}
/**
*
* Not useful for now
*
*
* .milvus.proto.common.MsgBase base = 1;
*/
public io.milvus.grpc.MsgBase.Builder getBaseBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getBaseFieldBuilder().getBuilder();
}
/**
*
* Not useful for now
*
*
* .milvus.proto.common.MsgBase base = 1;
*/
public io.milvus.grpc.MsgBaseOrBuilder getBaseOrBuilder() {
if (baseBuilder_ != null) {
return baseBuilder_.getMessageOrBuilder();
} else {
return base_ == null ?
io.milvus.grpc.MsgBase.getDefaultInstance() : base_;
}
}
/**
*
* Not useful for now
*
*
* .milvus.proto.common.MsgBase base = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
io.milvus.grpc.MsgBase, io.milvus.grpc.MsgBase.Builder, io.milvus.grpc.MsgBaseOrBuilder>
getBaseFieldBuilder() {
if (baseBuilder_ == null) {
baseBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
io.milvus.grpc.MsgBase, io.milvus.grpc.MsgBase.Builder, io.milvus.grpc.MsgBaseOrBuilder>(
getBase(),
getParentForChildren(),
isClean());
base_ = null;
}
return baseBuilder_;
}
private java.lang.Object dbName_ = "";
/**
* string db_name = 2;
* @return The dbName.
*/
public java.lang.String getDbName() {
java.lang.Object ref = dbName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
dbName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string db_name = 2;
* @return The bytes for dbName.
*/
public com.google.protobuf.ByteString
getDbNameBytes() {
java.lang.Object ref = dbName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
dbName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string db_name = 2;
* @param value The dbName to set.
* @return This builder for chaining.
*/
public Builder setDbName(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
dbName_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
* string db_name = 2;
* @return This builder for chaining.
*/
public Builder clearDbName() {
dbName_ = getDefaultInstance().getDbName();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
* string db_name = 2;
* @param value The bytes for dbName to set.
* @return This builder for chaining.
*/
public Builder setDbNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
dbName_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
private java.lang.Object collectionName_ = "";
/**
*
* The collection name you want to describe, you can pass collection_name or collectionID
*
*
* string collection_name = 3;
* @return The collectionName.
*/
public java.lang.String getCollectionName() {
java.lang.Object ref = collectionName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
collectionName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The collection name you want to describe, you can pass collection_name or collectionID
*
*
* string collection_name = 3;
* @return The bytes for collectionName.
*/
public com.google.protobuf.ByteString
getCollectionNameBytes() {
java.lang.Object ref = collectionName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
collectionName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The collection name you want to describe, you can pass collection_name or collectionID
*
*
* string collection_name = 3;
* @param value The collectionName to set.
* @return This builder for chaining.
*/
public Builder setCollectionName(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
collectionName_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
* The collection name you want to describe, you can pass collection_name or collectionID
*
*
* string collection_name = 3;
* @return This builder for chaining.
*/
public Builder clearCollectionName() {
collectionName_ = getDefaultInstance().getCollectionName();
bitField0_ = (bitField0_ & ~0x00000004);
onChanged();
return this;
}
/**
*
* The collection name you want to describe, you can pass collection_name or collectionID
*
*
* string collection_name = 3;
* @param value The bytes for collectionName to set.
* @return This builder for chaining.
*/
public Builder setCollectionNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
collectionName_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
private long collectionID_ ;
/**
*
* The collection id in milvus
*
*
* int64 collectionID = 4;
* @return The collectionID.
*/
@java.lang.Override
public long getCollectionID() {
return collectionID_;
}
/**
*
* The collection id in milvus
*
*
* int64 collectionID = 4;
* @param value The collectionID to set.
* @return This builder for chaining.
*/
public Builder setCollectionID(long value) {
collectionID_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
* The collection id in milvus
*
*
* int64 collectionID = 4;
* @return This builder for chaining.
*/
public Builder clearCollectionID() {
bitField0_ = (bitField0_ & ~0x00000008);
collectionID_ = 0L;
onChanged();
return this;
}
private com.google.protobuf.LazyStringArrayList partitionNames_ =
com.google.protobuf.LazyStringArrayList.emptyList();
private void ensurePartitionNamesIsMutable() {
if (!partitionNames_.isModifiable()) {
partitionNames_ = new com.google.protobuf.LazyStringArrayList(partitionNames_);
}
bitField0_ |= 0x00000010;
}
/**
*
* When type is InMemory, will return these patitions's inMemory_percentages.(Optional)
*
*
* repeated string partition_names = 5;
* @return A list containing the partitionNames.
*/
public com.google.protobuf.ProtocolStringList
getPartitionNamesList() {
partitionNames_.makeImmutable();
return partitionNames_;
}
/**
*
* When type is InMemory, will return these patitions's inMemory_percentages.(Optional)
*
*
* repeated string partition_names = 5;
* @return The count of partitionNames.
*/
public int getPartitionNamesCount() {
return partitionNames_.size();
}
/**
*
* When type is InMemory, will return these patitions's inMemory_percentages.(Optional)
*
*
* repeated string partition_names = 5;
* @param index The index of the element to return.
* @return The partitionNames at the given index.
*/
public java.lang.String getPartitionNames(int index) {
return partitionNames_.get(index);
}
/**
*
* When type is InMemory, will return these patitions's inMemory_percentages.(Optional)
*
*
* repeated string partition_names = 5;
* @param index The index of the value to return.
* @return The bytes of the partitionNames at the given index.
*/
public com.google.protobuf.ByteString
getPartitionNamesBytes(int index) {
return partitionNames_.getByteString(index);
}
/**
*
* When type is InMemory, will return these patitions's inMemory_percentages.(Optional)
*
*
* repeated string partition_names = 5;
* @param index The index to set the value at.
* @param value The partitionNames to set.
* @return This builder for chaining.
*/
public Builder setPartitionNames(
int index, java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
ensurePartitionNamesIsMutable();
partitionNames_.set(index, value);
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
* When type is InMemory, will return these patitions's inMemory_percentages.(Optional)
*
*
* repeated string partition_names = 5;
* @param value The partitionNames to add.
* @return This builder for chaining.
*/
public Builder addPartitionNames(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
ensurePartitionNamesIsMutable();
partitionNames_.add(value);
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
* When type is InMemory, will return these patitions's inMemory_percentages.(Optional)
*
*
* repeated string partition_names = 5;
* @param values The partitionNames to add.
* @return This builder for chaining.
*/
public Builder addAllPartitionNames(
java.lang.Iterable values) {
ensurePartitionNamesIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, partitionNames_);
bitField0_ |= 0x00000010;
onChanged();
return this;
}
/**
*
* When type is InMemory, will return these patitions's inMemory_percentages.(Optional)
*
*
* repeated string partition_names = 5;
* @return This builder for chaining.
*/
public Builder clearPartitionNames() {
partitionNames_ =
com.google.protobuf.LazyStringArrayList.emptyList();
bitField0_ = (bitField0_ & ~0x00000010);;
onChanged();
return this;
}
/**
*
* When type is InMemory, will return these patitions's inMemory_percentages.(Optional)
*
*
* repeated string partition_names = 5;
* @param value The bytes of the partitionNames to add.
* @return This builder for chaining.
*/
public Builder addPartitionNamesBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
ensurePartitionNamesIsMutable();
partitionNames_.add(value);
bitField0_ |= 0x00000010;
onChanged();
return this;
}
private int type_ = 0;
/**
*
* Decide return Loaded partitions or All partitions(Optional)
* Deprecated: use GetLoadingProgress rpc instead
*
*
* .milvus.proto.milvus.ShowType type = 6 [deprecated = true];
* @deprecated milvus.proto.milvus.ShowPartitionsRequest.type is deprecated.
* See milvus.proto;l=653
* @return The enum numeric value on the wire for type.
*/
@java.lang.Override @java.lang.Deprecated public int getTypeValue() {
return type_;
}
/**
*
* Decide return Loaded partitions or All partitions(Optional)
* Deprecated: use GetLoadingProgress rpc instead
*
*
* .milvus.proto.milvus.ShowType type = 6 [deprecated = true];
* @deprecated milvus.proto.milvus.ShowPartitionsRequest.type is deprecated.
* See milvus.proto;l=653
* @param value The enum numeric value on the wire for type to set.
* @return This builder for chaining.
*/
@java.lang.Deprecated public Builder setTypeValue(int value) {
type_ = value;
bitField0_ |= 0x00000020;
onChanged();
return this;
}
/**
*
* Decide return Loaded partitions or All partitions(Optional)
* Deprecated: use GetLoadingProgress rpc instead
*
*
* .milvus.proto.milvus.ShowType type = 6 [deprecated = true];
* @deprecated milvus.proto.milvus.ShowPartitionsRequest.type is deprecated.
* See milvus.proto;l=653
* @return The type.
*/
@java.lang.Override
@java.lang.Deprecated public io.milvus.grpc.ShowType getType() {
io.milvus.grpc.ShowType result = io.milvus.grpc.ShowType.forNumber(type_);
return result == null ? io.milvus.grpc.ShowType.UNRECOGNIZED : result;
}
/**
*
* Decide return Loaded partitions or All partitions(Optional)
* Deprecated: use GetLoadingProgress rpc instead
*
*
* .milvus.proto.milvus.ShowType type = 6 [deprecated = true];
* @deprecated milvus.proto.milvus.ShowPartitionsRequest.type is deprecated.
* See milvus.proto;l=653
* @param value The type to set.
* @return This builder for chaining.
*/
@java.lang.Deprecated public Builder setType(io.milvus.grpc.ShowType value) {
if (value == null) {
throw new NullPointerException();
}
bitField0_ |= 0x00000020;
type_ = value.getNumber();
onChanged();
return this;
}
/**
*
* Decide return Loaded partitions or All partitions(Optional)
* Deprecated: use GetLoadingProgress rpc instead
*
*
* .milvus.proto.milvus.ShowType type = 6 [deprecated = true];
* @deprecated milvus.proto.milvus.ShowPartitionsRequest.type is deprecated.
* See milvus.proto;l=653
* @return This builder for chaining.
*/
@java.lang.Deprecated public Builder clearType() {
bitField0_ = (bitField0_ & ~0x00000020);
type_ = 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:milvus.proto.milvus.ShowPartitionsRequest)
}
// @@protoc_insertion_point(class_scope:milvus.proto.milvus.ShowPartitionsRequest)
private static final io.milvus.grpc.ShowPartitionsRequest DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new io.milvus.grpc.ShowPartitionsRequest();
}
public static io.milvus.grpc.ShowPartitionsRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public ShowPartitionsRequest 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.ShowPartitionsRequest getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}