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

com.fnklabs.draenei.analytics.search.DocumentIndex Maven / Gradle / Ivy

package com.fnklabs.draenei.analytics.search;

import org.jetbrains.annotations.NotNull;

import java.util.Set;

public class DocumentIndex {
    @NotNull
    private final Document document;

    @NotNull
    private final Set facets;

    public DocumentIndex(@NotNull Document document, @NotNull Set facets) {
        this.document = document;
        this.facets = facets;
    }

    @NotNull
    public Document getDocument() {
        return document;
    }

    @NotNull
    public Set getFacets() {
        return facets;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy