Package io.milvus.response
Class DescIndexResponseWrapper
- java.lang.Object
-
- io.milvus.response.DescIndexResponseWrapper
-
public class DescIndexResponseWrapper extends java.lang.ObjectUtil 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 io.milvus.grpc.DescribeIndexResponse response)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescIndexResponseWrapper.IndexDescgetIndexDescByFieldName(@NonNull java.lang.String fieldName)Get index description by field name.java.util.List<DescIndexResponseWrapper.IndexDesc>getIndexDescriptions()Get index description of fields.java.lang.StringtoString()Construct aStringbyDescIndexResponseWrapperinstance.
-
-
-
Method Detail
-
getIndexDescriptions
public java.util.List<DescIndexResponseWrapper.IndexDesc> getIndexDescriptions()
Get index description of fields.- Returns:
- List of IndexDesc, index description of fields
-
getIndexDescByFieldName
public DescIndexResponseWrapper.IndexDesc getIndexDescByFieldName(@NonNull @NonNull java.lang.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 java.lang.String toString()
Construct aStringbyDescIndexResponseWrapperinstance.- Overrides:
toStringin classjava.lang.Object- Returns:
String
-
-