getStructField()
This getter returns a struct field schema by name from the collection schema.
public CreateCollectionReq.StructFieldSchema getStructField(String fieldName)
PARAMETERS:
fieldName (String) -
The name of the struct field.
RETURNS:
CreateCollectionReq.StructFieldSchema
EXCEPTIONS:
MilvusClientException
This exception will be raised when any error occurs during this operation.
Example
CollectionSchema schema = CollectionSchema.builder().build();
CreateCollectionReq.StructFieldSchema structField = schema.getStructField("metadata");