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

net.ravendb.client.documents.queries.TermsQueryResult Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
package net.ravendb.client.documents.queries;

import java.util.Set;

public class TermsQueryResult {
    private Set terms;
    private long resultEtag;
    private String indexName;

    public Set getTerms() {
        return terms;
    }

    public void setTerms(Set terms) {
        this.terms = terms;
    }

    public long getResultEtag() {
        return resultEtag;
    }

    public void setResultEtag(long resultEtag) {
        this.resultEtag = resultEtag;
    }

    public String getIndexName() {
        return indexName;
    }

    public void setIndexName(String indexName) {
        this.indexName = indexName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy