Package io.milvus.client
Class GetEntityByIDResponse
- java.lang.Object
-
- io.milvus.client.GetEntityByIDResponse
-
public class GetEntityByIDResponse extends java.lang.ObjectContains the returnedresponseand either aListoffloatVectorsorbinaryVectorsforgetEntityByID. If the id does not exist, both float and binary vectors corresponding to the id will be empty.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.nio.ByteBuffer>getBinaryVectors()java.util.List<java.util.List<java.lang.Float>>getFloatVectors()ResponsegetResponse()booleanok()
-
-
-
Method Detail
-
getFloatVectors
public java.util.List<java.util.List<java.lang.Float>> getFloatVectors()
-
getBinaryVectors
public java.util.List<java.nio.ByteBuffer> getBinaryVectors()
- Returns:
- a
ListofByteBufferobject
-
getResponse
public Response getResponse()
-
ok
public boolean ok()
- Returns:
trueif the response status equals SUCCESS
-
-