se.l4.silo.search.query.ConstantScoreData 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;
import se.l4.silo.search.QueryItem;
public class ConstantScoreData
{
private final float score;
private final QueryItem subQuery;
public ConstantScoreData(float score, QueryItem subQuery)
{
this.score = score;
this.subQuery = subQuery;
}
public float getScore()
{
return score;
}
public QueryItem getSubQuery()
{
return subQuery;
}
}