Package io.milvus.grpc
Interface CollectionSchemaOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CollectionSchema,CollectionSchema.Builder
public interface CollectionSchemaOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetAutoID()deprecated later, keep compatible with c++ part nowStringgetDescription()string description = 2;com.google.protobuf.ByteStringgetDescriptionBytes()string description = 2;booleangetEnableDynamicField()mark whether this table has the dynamic field function enabled.FieldSchemagetFields(int index)repeated .milvus.proto.schema.FieldSchema fields = 4;intgetFieldsCount()repeated .milvus.proto.schema.FieldSchema fields = 4;List<FieldSchema>getFieldsList()repeated .milvus.proto.schema.FieldSchema fields = 4;FieldSchemaOrBuildergetFieldsOrBuilder(int index)repeated .milvus.proto.schema.FieldSchema fields = 4;List<? extends FieldSchemaOrBuilder>getFieldsOrBuilderList()repeated .milvus.proto.schema.FieldSchema fields = 4;StringgetName()string name = 1;com.google.protobuf.ByteStringgetNameBytes()string name = 1;-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
string name = 1;- Returns:
- The bytes for name.
-
getDescription
String getDescription()
string description = 2;- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
string description = 2;- Returns:
- The bytes for description.
-
getAutoID
boolean getAutoID()
deprecated later, keep compatible with c++ part now
bool autoID = 3;- Returns:
- The autoID.
-
getFieldsList
List<FieldSchema> getFieldsList()
repeated .milvus.proto.schema.FieldSchema fields = 4;
-
getFields
FieldSchema getFields(int index)
repeated .milvus.proto.schema.FieldSchema fields = 4;
-
getFieldsCount
int getFieldsCount()
repeated .milvus.proto.schema.FieldSchema fields = 4;
-
getFieldsOrBuilderList
List<? extends FieldSchemaOrBuilder> getFieldsOrBuilderList()
repeated .milvus.proto.schema.FieldSchema fields = 4;
-
getFieldsOrBuilder
FieldSchemaOrBuilder getFieldsOrBuilder(int index)
repeated .milvus.proto.schema.FieldSchema fields = 4;
-
getEnableDynamicField
boolean getEnableDynamicField()
mark whether this table has the dynamic field function enabled.
bool enable_dynamic_field = 5;- Returns:
- The enableDynamicField.
-
-