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

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

The newest version!
package se.l4.silo.search.query;

import se.l4.silo.search.QueryItem;

public class FieldQuery
	extends AbstractQueryPart
{
	private String field;

	public FieldQuery(String field)
	{
		this.field = field;
	}

	public R is(Object value)
	{
		receiver.addQuery(new QueryItem("field", new FieldQueryData(field, value)));
		return parent;
	}

	public R isEmpty()
	{
		receiver.addQuery(new QueryItem("field", new FieldQueryData(field, null)));
		return parent;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy