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

se.l4.silo.search.query.UserQuery 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 UserQuery
	extends AbstractQueryPart
{
	private final String[] fields;
	private float[] boosts;

	public UserQuery(String... fields)
	{
		this.fields = fields;
		this.boosts = new float[fields.length];
		for(int i=0, n=boosts.length; i




© 2015 - 2024 Weber Informatics LLC | Privacy Policy