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

org.vertexium.query.SimilarToGraphQuery Maven / Gradle / Ivy

There is a newer version: 4.10.0
Show newest version
package org.vertexium.query;

public interface SimilarToGraphQuery extends GraphQuery {
    /**
     * The minimum number of times a term must appear in the source data to be considered for a match.
     */
    SimilarToGraphQuery minTermFrequency(int minTermFrequency);

    /**
     * The maximum number of terms to be searched for.
     */
    SimilarToGraphQuery maxQueryTerms(int maxQueryTerms);

    /**
     * The minimum number of documents a term must be in to be considered for a similarity match.
     */
    SimilarToGraphQuery minDocFrequency(int minDocFrequency);

    /**
     * The maximum number of documents a term can be in to be considered for a similarity match.
     */
    SimilarToGraphQuery maxDocFrequency(int maxDocFrequency);

    /**
     * The amount of boost to apply to the similarity query.
     */
    SimilarToGraphQuery boost(float boost);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy