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

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

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: milvus.proto

package io.milvus.grpc;

/**
 * 
 **
 * Create collection in milvus
 * 
* * Protobuf type {@code milvus.proto.milvus.CreateCollectionRequest} */ public final class CreateCollectionRequest extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:milvus.proto.milvus.CreateCollectionRequest) CreateCollectionRequestOrBuilder { private static final long serialVersionUID = 0L; // Use CreateCollectionRequest.newBuilder() to construct. private CreateCollectionRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private CreateCollectionRequest() { dbName_ = ""; collectionName_ = ""; schema_ = com.google.protobuf.ByteString.EMPTY; consistencyLevel_ = 0; properties_ = java.util.Collections.emptyList(); } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new CreateCollectionRequest(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_CreateCollectionRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_CreateCollectionRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( io.milvus.grpc.CreateCollectionRequest.class, io.milvus.grpc.CreateCollectionRequest.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 unique collection name in milvus.(Required)
   * 
* * 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 unique collection name in milvus.(Required)
   * 
* * 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 SCHEMA_FIELD_NUMBER = 4; private com.google.protobuf.ByteString schema_ = com.google.protobuf.ByteString.EMPTY; /** *
   * The serialized `schema.CollectionSchema`(Required)
   * 
* * bytes schema = 4; * @return The schema. */ @java.lang.Override public com.google.protobuf.ByteString getSchema() { return schema_; } public static final int SHARDS_NUM_FIELD_NUMBER = 5; private int shardsNum_ = 0; /** *
   * Once set, no modification is allowed (Optional)
   * https://github.com/milvus-io/milvus/issues/6690
   * 
* * int32 shards_num = 5; * @return The shardsNum. */ @java.lang.Override public int getShardsNum() { return shardsNum_; } public static final int CONSISTENCY_LEVEL_FIELD_NUMBER = 6; private int consistencyLevel_ = 0; /** *
   * The consistency level that the collection used, modification is not supported now.
   * 
* * .milvus.proto.common.ConsistencyLevel consistency_level = 6; * @return The enum numeric value on the wire for consistencyLevel. */ @java.lang.Override public int getConsistencyLevelValue() { return consistencyLevel_; } /** *
   * The consistency level that the collection used, modification is not supported now.
   * 
* * .milvus.proto.common.ConsistencyLevel consistency_level = 6; * @return The consistencyLevel. */ @java.lang.Override public io.milvus.grpc.ConsistencyLevel getConsistencyLevel() { io.milvus.grpc.ConsistencyLevel result = io.milvus.grpc.ConsistencyLevel.forNumber(consistencyLevel_); return result == null ? io.milvus.grpc.ConsistencyLevel.UNRECOGNIZED : result; } public static final int PROPERTIES_FIELD_NUMBER = 7; @SuppressWarnings("serial") private java.util.List properties_; /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ @java.lang.Override public java.util.List getPropertiesList() { return properties_; } /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ @java.lang.Override public java.util.List getPropertiesOrBuilderList() { return properties_; } /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ @java.lang.Override public int getPropertiesCount() { return properties_.size(); } /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ @java.lang.Override public io.milvus.grpc.KeyValuePair getProperties(int index) { return properties_.get(index); } /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ @java.lang.Override public io.milvus.grpc.KeyValuePairOrBuilder getPropertiesOrBuilder( int index) { return properties_.get(index); } public static final int NUM_PARTITIONS_FIELD_NUMBER = 8; private long numPartitions_ = 0L; /** *
   * num of default physical partitions, only used in partition key mode and changes are not supported
   * 
* * int64 num_partitions = 8; * @return The numPartitions. */ @java.lang.Override public long getNumPartitions() { return numPartitions_; } 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 (!schema_.isEmpty()) { output.writeBytes(4, schema_); } if (shardsNum_ != 0) { output.writeInt32(5, shardsNum_); } if (consistencyLevel_ != io.milvus.grpc.ConsistencyLevel.Strong.getNumber()) { output.writeEnum(6, consistencyLevel_); } for (int i = 0; i < properties_.size(); i++) { output.writeMessage(7, properties_.get(i)); } if (numPartitions_ != 0L) { output.writeInt64(8, numPartitions_); } 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 (!schema_.isEmpty()) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(4, schema_); } if (shardsNum_ != 0) { size += com.google.protobuf.CodedOutputStream .computeInt32Size(5, shardsNum_); } if (consistencyLevel_ != io.milvus.grpc.ConsistencyLevel.Strong.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(6, consistencyLevel_); } for (int i = 0; i < properties_.size(); i++) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(7, properties_.get(i)); } if (numPartitions_ != 0L) { size += com.google.protobuf.CodedOutputStream .computeInt64Size(8, numPartitions_); } 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.CreateCollectionRequest)) { return super.equals(obj); } io.milvus.grpc.CreateCollectionRequest other = (io.milvus.grpc.CreateCollectionRequest) 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 (!getSchema() .equals(other.getSchema())) return false; if (getShardsNum() != other.getShardsNum()) return false; if (consistencyLevel_ != other.consistencyLevel_) return false; if (!getPropertiesList() .equals(other.getPropertiesList())) return false; if (getNumPartitions() != other.getNumPartitions()) 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) + SCHEMA_FIELD_NUMBER; hash = (53 * hash) + getSchema().hashCode(); hash = (37 * hash) + SHARDS_NUM_FIELD_NUMBER; hash = (53 * hash) + getShardsNum(); hash = (37 * hash) + CONSISTENCY_LEVEL_FIELD_NUMBER; hash = (53 * hash) + consistencyLevel_; if (getPropertiesCount() > 0) { hash = (37 * hash) + PROPERTIES_FIELD_NUMBER; hash = (53 * hash) + getPropertiesList().hashCode(); } hash = (37 * hash) + NUM_PARTITIONS_FIELD_NUMBER; hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getNumPartitions()); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static io.milvus.grpc.CreateCollectionRequest parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.milvus.grpc.CreateCollectionRequest 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.CreateCollectionRequest parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.milvus.grpc.CreateCollectionRequest 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.CreateCollectionRequest parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static io.milvus.grpc.CreateCollectionRequest parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static io.milvus.grpc.CreateCollectionRequest parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.milvus.grpc.CreateCollectionRequest 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.CreateCollectionRequest parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static io.milvus.grpc.CreateCollectionRequest 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.CreateCollectionRequest parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static io.milvus.grpc.CreateCollectionRequest 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.CreateCollectionRequest 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; } /** *
   **
   * Create collection in milvus
   * 
* * Protobuf type {@code milvus.proto.milvus.CreateCollectionRequest} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:milvus.proto.milvus.CreateCollectionRequest) io.milvus.grpc.CreateCollectionRequestOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_CreateCollectionRequest_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_CreateCollectionRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( io.milvus.grpc.CreateCollectionRequest.class, io.milvus.grpc.CreateCollectionRequest.Builder.class); } // Construct using io.milvus.grpc.CreateCollectionRequest.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(); getPropertiesFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; base_ = null; if (baseBuilder_ != null) { baseBuilder_.dispose(); baseBuilder_ = null; } dbName_ = ""; collectionName_ = ""; schema_ = com.google.protobuf.ByteString.EMPTY; shardsNum_ = 0; consistencyLevel_ = 0; if (propertiesBuilder_ == null) { properties_ = java.util.Collections.emptyList(); } else { properties_ = null; propertiesBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000040); numPartitions_ = 0L; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return io.milvus.grpc.MilvusProto.internal_static_milvus_proto_milvus_CreateCollectionRequest_descriptor; } @java.lang.Override public io.milvus.grpc.CreateCollectionRequest getDefaultInstanceForType() { return io.milvus.grpc.CreateCollectionRequest.getDefaultInstance(); } @java.lang.Override public io.milvus.grpc.CreateCollectionRequest build() { io.milvus.grpc.CreateCollectionRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public io.milvus.grpc.CreateCollectionRequest buildPartial() { io.milvus.grpc.CreateCollectionRequest result = new io.milvus.grpc.CreateCollectionRequest(this); buildPartialRepeatedFields(result); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartialRepeatedFields(io.milvus.grpc.CreateCollectionRequest result) { if (propertiesBuilder_ == null) { if (((bitField0_ & 0x00000040) != 0)) { properties_ = java.util.Collections.unmodifiableList(properties_); bitField0_ = (bitField0_ & ~0x00000040); } result.properties_ = properties_; } else { result.properties_ = propertiesBuilder_.build(); } } private void buildPartial0(io.milvus.grpc.CreateCollectionRequest 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.schema_ = schema_; } if (((from_bitField0_ & 0x00000010) != 0)) { result.shardsNum_ = shardsNum_; } if (((from_bitField0_ & 0x00000020) != 0)) { result.consistencyLevel_ = consistencyLevel_; } if (((from_bitField0_ & 0x00000080) != 0)) { result.numPartitions_ = numPartitions_; } 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.CreateCollectionRequest) { return mergeFrom((io.milvus.grpc.CreateCollectionRequest)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(io.milvus.grpc.CreateCollectionRequest other) { if (other == io.milvus.grpc.CreateCollectionRequest.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.getSchema() != com.google.protobuf.ByteString.EMPTY) { setSchema(other.getSchema()); } if (other.getShardsNum() != 0) { setShardsNum(other.getShardsNum()); } if (other.consistencyLevel_ != 0) { setConsistencyLevelValue(other.getConsistencyLevelValue()); } if (propertiesBuilder_ == null) { if (!other.properties_.isEmpty()) { if (properties_.isEmpty()) { properties_ = other.properties_; bitField0_ = (bitField0_ & ~0x00000040); } else { ensurePropertiesIsMutable(); properties_.addAll(other.properties_); } onChanged(); } } else { if (!other.properties_.isEmpty()) { if (propertiesBuilder_.isEmpty()) { propertiesBuilder_.dispose(); propertiesBuilder_ = null; properties_ = other.properties_; bitField0_ = (bitField0_ & ~0x00000040); propertiesBuilder_ = com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? getPropertiesFieldBuilder() : null; } else { propertiesBuilder_.addAllMessages(other.properties_); } } } if (other.getNumPartitions() != 0L) { setNumPartitions(other.getNumPartitions()); } 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 34: { schema_ = input.readBytes(); bitField0_ |= 0x00000008; break; } // case 34 case 40: { shardsNum_ = input.readInt32(); bitField0_ |= 0x00000010; break; } // case 40 case 48: { consistencyLevel_ = input.readEnum(); bitField0_ |= 0x00000020; break; } // case 48 case 58: { io.milvus.grpc.KeyValuePair m = input.readMessage( io.milvus.grpc.KeyValuePair.parser(), extensionRegistry); if (propertiesBuilder_ == null) { ensurePropertiesIsMutable(); properties_.add(m); } else { propertiesBuilder_.addMessage(m); } break; } // case 58 case 64: { numPartitions_ = input.readInt64(); bitField0_ |= 0x00000080; break; } // case 64 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 unique collection name in milvus.(Required)
     * 
* * 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 unique collection name in milvus.(Required)
     * 
* * 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 unique collection name in milvus.(Required)
     * 
* * 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 unique collection name in milvus.(Required)
     * 
* * string collection_name = 3; * @return This builder for chaining. */ public Builder clearCollectionName() { collectionName_ = getDefaultInstance().getCollectionName(); bitField0_ = (bitField0_ & ~0x00000004); onChanged(); return this; } /** *
     * The unique collection name in milvus.(Required)
     * 
* * 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 com.google.protobuf.ByteString schema_ = com.google.protobuf.ByteString.EMPTY; /** *
     * The serialized `schema.CollectionSchema`(Required)
     * 
* * bytes schema = 4; * @return The schema. */ @java.lang.Override public com.google.protobuf.ByteString getSchema() { return schema_; } /** *
     * The serialized `schema.CollectionSchema`(Required)
     * 
* * bytes schema = 4; * @param value The schema to set. * @return This builder for chaining. */ public Builder setSchema(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } schema_ = value; bitField0_ |= 0x00000008; onChanged(); return this; } /** *
     * The serialized `schema.CollectionSchema`(Required)
     * 
* * bytes schema = 4; * @return This builder for chaining. */ public Builder clearSchema() { bitField0_ = (bitField0_ & ~0x00000008); schema_ = getDefaultInstance().getSchema(); onChanged(); return this; } private int shardsNum_ ; /** *
     * Once set, no modification is allowed (Optional)
     * https://github.com/milvus-io/milvus/issues/6690
     * 
* * int32 shards_num = 5; * @return The shardsNum. */ @java.lang.Override public int getShardsNum() { return shardsNum_; } /** *
     * Once set, no modification is allowed (Optional)
     * https://github.com/milvus-io/milvus/issues/6690
     * 
* * int32 shards_num = 5; * @param value The shardsNum to set. * @return This builder for chaining. */ public Builder setShardsNum(int value) { shardsNum_ = value; bitField0_ |= 0x00000010; onChanged(); return this; } /** *
     * Once set, no modification is allowed (Optional)
     * https://github.com/milvus-io/milvus/issues/6690
     * 
* * int32 shards_num = 5; * @return This builder for chaining. */ public Builder clearShardsNum() { bitField0_ = (bitField0_ & ~0x00000010); shardsNum_ = 0; onChanged(); return this; } private int consistencyLevel_ = 0; /** *
     * The consistency level that the collection used, modification is not supported now.
     * 
* * .milvus.proto.common.ConsistencyLevel consistency_level = 6; * @return The enum numeric value on the wire for consistencyLevel. */ @java.lang.Override public int getConsistencyLevelValue() { return consistencyLevel_; } /** *
     * The consistency level that the collection used, modification is not supported now.
     * 
* * .milvus.proto.common.ConsistencyLevel consistency_level = 6; * @param value The enum numeric value on the wire for consistencyLevel to set. * @return This builder for chaining. */ public Builder setConsistencyLevelValue(int value) { consistencyLevel_ = value; bitField0_ |= 0x00000020; onChanged(); return this; } /** *
     * The consistency level that the collection used, modification is not supported now.
     * 
* * .milvus.proto.common.ConsistencyLevel consistency_level = 6; * @return The consistencyLevel. */ @java.lang.Override public io.milvus.grpc.ConsistencyLevel getConsistencyLevel() { io.milvus.grpc.ConsistencyLevel result = io.milvus.grpc.ConsistencyLevel.forNumber(consistencyLevel_); return result == null ? io.milvus.grpc.ConsistencyLevel.UNRECOGNIZED : result; } /** *
     * The consistency level that the collection used, modification is not supported now.
     * 
* * .milvus.proto.common.ConsistencyLevel consistency_level = 6; * @param value The consistencyLevel to set. * @return This builder for chaining. */ public Builder setConsistencyLevel(io.milvus.grpc.ConsistencyLevel value) { if (value == null) { throw new NullPointerException(); } bitField0_ |= 0x00000020; consistencyLevel_ = value.getNumber(); onChanged(); return this; } /** *
     * The consistency level that the collection used, modification is not supported now.
     * 
* * .milvus.proto.common.ConsistencyLevel consistency_level = 6; * @return This builder for chaining. */ public Builder clearConsistencyLevel() { bitField0_ = (bitField0_ & ~0x00000020); consistencyLevel_ = 0; onChanged(); return this; } private java.util.List properties_ = java.util.Collections.emptyList(); private void ensurePropertiesIsMutable() { if (!((bitField0_ & 0x00000040) != 0)) { properties_ = new java.util.ArrayList(properties_); bitField0_ |= 0x00000040; } } private com.google.protobuf.RepeatedFieldBuilderV3< io.milvus.grpc.KeyValuePair, io.milvus.grpc.KeyValuePair.Builder, io.milvus.grpc.KeyValuePairOrBuilder> propertiesBuilder_; /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ public java.util.List getPropertiesList() { if (propertiesBuilder_ == null) { return java.util.Collections.unmodifiableList(properties_); } else { return propertiesBuilder_.getMessageList(); } } /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ public int getPropertiesCount() { if (propertiesBuilder_ == null) { return properties_.size(); } else { return propertiesBuilder_.getCount(); } } /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ public io.milvus.grpc.KeyValuePair getProperties(int index) { if (propertiesBuilder_ == null) { return properties_.get(index); } else { return propertiesBuilder_.getMessage(index); } } /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ public Builder setProperties( int index, io.milvus.grpc.KeyValuePair value) { if (propertiesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensurePropertiesIsMutable(); properties_.set(index, value); onChanged(); } else { propertiesBuilder_.setMessage(index, value); } return this; } /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ public Builder setProperties( int index, io.milvus.grpc.KeyValuePair.Builder builderForValue) { if (propertiesBuilder_ == null) { ensurePropertiesIsMutable(); properties_.set(index, builderForValue.build()); onChanged(); } else { propertiesBuilder_.setMessage(index, builderForValue.build()); } return this; } /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ public Builder addProperties(io.milvus.grpc.KeyValuePair value) { if (propertiesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensurePropertiesIsMutable(); properties_.add(value); onChanged(); } else { propertiesBuilder_.addMessage(value); } return this; } /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ public Builder addProperties( int index, io.milvus.grpc.KeyValuePair value) { if (propertiesBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensurePropertiesIsMutable(); properties_.add(index, value); onChanged(); } else { propertiesBuilder_.addMessage(index, value); } return this; } /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ public Builder addProperties( io.milvus.grpc.KeyValuePair.Builder builderForValue) { if (propertiesBuilder_ == null) { ensurePropertiesIsMutable(); properties_.add(builderForValue.build()); onChanged(); } else { propertiesBuilder_.addMessage(builderForValue.build()); } return this; } /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ public Builder addProperties( int index, io.milvus.grpc.KeyValuePair.Builder builderForValue) { if (propertiesBuilder_ == null) { ensurePropertiesIsMutable(); properties_.add(index, builderForValue.build()); onChanged(); } else { propertiesBuilder_.addMessage(index, builderForValue.build()); } return this; } /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ public Builder addAllProperties( java.lang.Iterable values) { if (propertiesBuilder_ == null) { ensurePropertiesIsMutable(); com.google.protobuf.AbstractMessageLite.Builder.addAll( values, properties_); onChanged(); } else { propertiesBuilder_.addAllMessages(values); } return this; } /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ public Builder clearProperties() { if (propertiesBuilder_ == null) { properties_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000040); onChanged(); } else { propertiesBuilder_.clear(); } return this; } /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ public Builder removeProperties(int index) { if (propertiesBuilder_ == null) { ensurePropertiesIsMutable(); properties_.remove(index); onChanged(); } else { propertiesBuilder_.remove(index); } return this; } /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ public io.milvus.grpc.KeyValuePair.Builder getPropertiesBuilder( int index) { return getPropertiesFieldBuilder().getBuilder(index); } /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ public io.milvus.grpc.KeyValuePairOrBuilder getPropertiesOrBuilder( int index) { if (propertiesBuilder_ == null) { return properties_.get(index); } else { return propertiesBuilder_.getMessageOrBuilder(index); } } /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ public java.util.List getPropertiesOrBuilderList() { if (propertiesBuilder_ != null) { return propertiesBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(properties_); } } /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ public io.milvus.grpc.KeyValuePair.Builder addPropertiesBuilder() { return getPropertiesFieldBuilder().addBuilder( io.milvus.grpc.KeyValuePair.getDefaultInstance()); } /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ public io.milvus.grpc.KeyValuePair.Builder addPropertiesBuilder( int index) { return getPropertiesFieldBuilder().addBuilder( index, io.milvus.grpc.KeyValuePair.getDefaultInstance()); } /** * repeated .milvus.proto.common.KeyValuePair properties = 7; */ public java.util.List getPropertiesBuilderList() { return getPropertiesFieldBuilder().getBuilderList(); } private com.google.protobuf.RepeatedFieldBuilderV3< io.milvus.grpc.KeyValuePair, io.milvus.grpc.KeyValuePair.Builder, io.milvus.grpc.KeyValuePairOrBuilder> getPropertiesFieldBuilder() { if (propertiesBuilder_ == null) { propertiesBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< io.milvus.grpc.KeyValuePair, io.milvus.grpc.KeyValuePair.Builder, io.milvus.grpc.KeyValuePairOrBuilder>( properties_, ((bitField0_ & 0x00000040) != 0), getParentForChildren(), isClean()); properties_ = null; } return propertiesBuilder_; } private long numPartitions_ ; /** *
     * num of default physical partitions, only used in partition key mode and changes are not supported
     * 
* * int64 num_partitions = 8; * @return The numPartitions. */ @java.lang.Override public long getNumPartitions() { return numPartitions_; } /** *
     * num of default physical partitions, only used in partition key mode and changes are not supported
     * 
* * int64 num_partitions = 8; * @param value The numPartitions to set. * @return This builder for chaining. */ public Builder setNumPartitions(long value) { numPartitions_ = value; bitField0_ |= 0x00000080; onChanged(); return this; } /** *
     * num of default physical partitions, only used in partition key mode and changes are not supported
     * 
* * int64 num_partitions = 8; * @return This builder for chaining. */ public Builder clearNumPartitions() { bitField0_ = (bitField0_ & ~0x00000080); numPartitions_ = 0L; 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.CreateCollectionRequest) } // @@protoc_insertion_point(class_scope:milvus.proto.milvus.CreateCollectionRequest) private static final io.milvus.grpc.CreateCollectionRequest DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new io.milvus.grpc.CreateCollectionRequest(); } public static io.milvus.grpc.CreateCollectionRequest getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public CreateCollectionRequest 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.CreateCollectionRequest getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy