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

ru.yandex.qatools.embed.service.beans.IndexingResult Maven / Gradle / Ivy

There is a newer version: 1.21
Show newest version
package ru.yandex.qatools.embed.service.beans;

import java.util.Map;

/**
 * @author smecsia
 */
public class IndexingResult {

    final String id;
    final float score;
    final Map attrs;

    public IndexingResult(String id, float score, Map attrs) {
        this.id = id;
        this.score = score;
        this.attrs = attrs;
    }

    public String getId() {
        return id;
    }

    public float getScore() {
        return score;
    }

    public Map getAttrs() {
        return attrs;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy