se.l4.silo.search.query.SuggestQueryData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of silo-search-api Show documentation
Show all versions of silo-search-api Show documentation
API for Lucene-based querying for Silo.
The newest version!
package se.l4.silo.search.query;
public class SuggestQueryData
{
private final String field;
private final String text;
public SuggestQueryData(String field, String text)
{
this.field = field;
this.text = text;
}
public String getField()
{
return field;
}
public String getText()
{
return text;
}
}