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

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

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

import org.vertexium.Authorizations;

public class SimilarToTextQueryParameters extends SimilarToQueryParameters {
    private final String text;

    public SimilarToTextQueryParameters(String[] fields, String text, Authorizations authorizations) {
        super(fields, authorizations);
        this.text = text;
    }

    public String getText() {
        return text;
    }

    @Override
    public QueryParameters clone() {
        SimilarToTextQueryParameters results = new SimilarToTextQueryParameters(getFields(), getText(), getAuthorizations());
        super.cloneTo(results);
        return results;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy