All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.semantickernel.data.textsearch.DefaultTextSearchResultMapper Maven / Gradle / Ivy

There is a newer version: 1.4.2
Show newest version
// Copyright (c) Microsoft. All rights reserved.
package com.microsoft.semantickernel.data.textsearch;

/**
 * Default implementation of {@link TextSearchResultMapper}.
 */
public class DefaultTextSearchResultMapper implements TextSearchResultMapper {
    /**
     * Maps a search result to a {@link TextSearchResult}.
     *
     * @param result The search result.
     * @return The {@link TextSearchResult}.
     */
    @Override
    public TextSearchResult fromResultToTextSearchResult(Object result) {
        return TextSearchResult.fromRecord(result);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy