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

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

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

/**
 * Default implementation of {@link TextSearchStringMapper}.
 */
public class DefaultTextSearchStringMapper implements TextSearchStringMapper {
    /**
     * Maps a search result to a string.
     *
     * @param result The search result.
     * @return The string.
     */
    @Override
    public String fromResultToString(Object result) {
        TextSearchResult textSearchResult = TextSearchResult.fromRecord(result);
        return textSearchResult.getValue();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy