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

com.rbmhtechnology.vind.api.query.suggestion.ExecutableSuggestionSearch Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package com.rbmhtechnology.vind.api.query.suggestion;

import com.rbmhtechnology.vind.api.query.filter.Filter;

/**
 * @author Thomas Kurz ([email protected])
 * @since 07.07.16.
 */
public interface ExecutableSuggestionSearch {
    public boolean isStringSuggestion();

    public boolean hasFilter();

    public Filter getFilter();

    public String getInput();

    public ExecutableSuggestionSearch text(String text);

    public ExecutableSuggestionSearch filter(Filter filter);

    public ExecutableSuggestionSearch setLimit(int limit);

    public ExecutableSuggestionSearch context(String context);

    public int getLimit();

    String getSearchContext();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy