Class KernelSearchResults<T>
- java.lang.Object
-
- com.microsoft.semantickernel.data.textsearch.KernelSearchResults<T>
-
- Type Parameters:
T- The type of the search results.
public class KernelSearchResults<T> extends Object
The search results.
-
-
Constructor Summary
Constructors Constructor Description KernelSearchResults(List<T> results)Creates a new instance of the KernelSearchResults class.KernelSearchResults(List<T> results, long totalCount, Map<String,Object> metadata)Creates a new instance of the KernelSearchResults class.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>getMetadata()Gets the metadata associated with the search results.List<T>getResults()Gets the search results.longgetTotalCount()Gets the total count of search results.
-