Package io.milvus.response.basic
Class RowRecordWrapper
- java.lang.Object
-
- io.milvus.response.basic.RowRecordWrapper
-
- Direct Known Subclasses:
QueryResultsWrapper,SearchResultsWrapper
public abstract class RowRecordWrapper extends Object
-
-
Constructor Summary
Constructors Constructor Description RowRecordWrapper()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected QueryResultsWrapper.RowRecordbuildRowRecord(QueryResultsWrapper.RowRecord record, long index)Gets a row record from result.FieldDataWrappergetDynamicWrapper()Get the dynamic field.protected abstract List<FieldData>getFieldDataList()protected abstract List<String>getOutputFields()abstract List<QueryResultsWrapper.RowRecord>getRowRecords()
-
-
-
Method Detail
-
getRowRecords
public abstract List<QueryResultsWrapper.RowRecord> getRowRecords()
-
getDynamicWrapper
public FieldDataWrapper getDynamicWrapper() throws ParamException
Get the dynamic field. Only available when a collection's dynamic field is enabled. ThrowsParamExceptionif the dynamic field doesn't exist.- Returns:
FieldDataWrapper- Throws:
ParamException
-
buildRowRecord
protected QueryResultsWrapper.RowRecord buildRowRecord(QueryResultsWrapper.RowRecord record, long index)
Gets a row record from result. ThrowsParamExceptionif the index is illegal.- Returns:
RowRecorda row record of the result
-
-