com.microsoft.semantickernel.data.textsearch.TextSearchResultMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of semantickernel-api Show documentation
Show all versions of semantickernel-api Show documentation
Defines the public interface for the Semantic Kernel
// Copyright (c) Microsoft. All rights reserved.
package com.microsoft.semantickernel.data.textsearch;
/**
* Maps a search result to a {@link TextSearchResult}.
*/
public interface TextSearchResultMapper {
/**
* Maps a search result to a {@link TextSearchResult}.
*
* @param result The search result.
* @return The {@link TextSearchResult}.
*/
TextSearchResult fromResultToTextSearchResult(Object result);
}