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

se.l4.silo.search.query.ConstantScoreData Maven / Gradle / Ivy

There is a newer version: 0.2.3
Show 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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy