Package io.milvus.response
Class DescIndexResponseWrapper
- java.lang.Object
-
- io.milvus.response.DescIndexResponseWrapper
-
public class DescIndexResponseWrapper extends Object
Util class to wrap response ofdescribeIndexinterface.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDescIndexResponseWrapper.IndexDescInternal-use class to wrap response ofdescribeIndexinterface.
-
Constructor Summary
Constructors Constructor Description DescIndexResponseWrapper(@NonNull DescribeIndexResponse response)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescIndexResponseWrapper.IndexDescgetIndexDescByFieldName(@NonNull String fieldName)Get index description by field name.List<DescIndexResponseWrapper.IndexDesc>getIndexDescriptions()Get index description of fields.StringtoString()Construct aStringbyDescIndexResponseWrapperinstance.
-
-
-
Constructor Detail
-
DescIndexResponseWrapper
public DescIndexResponseWrapper(@NonNull @NonNull DescribeIndexResponse response)
-
-
Method Detail
-
getIndexDescriptions
public List<DescIndexResponseWrapper.IndexDesc> getIndexDescriptions()
Get index description of fields.- Returns:
- List of IndexDesc, index description of fields
-
getIndexDescByFieldName
public DescIndexResponseWrapper.IndexDesc getIndexDescByFieldName(@NonNull @NonNull String fieldName)
Get index description by field name. Return null if the field doesn't exist- Parameters:
fieldName- field name to get index description- Returns:
DescIndexResponseWrapper.IndexDescdescription of the index
-
toString
public String toString()
Construct aStringbyDescIndexResponseWrapperinstance.
-
-