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

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

There is a newer version: 0.2.3
Show newest version
package se.l4.silo.search.query;

public class FieldQueryData
{
	private final String field;
	private final Object value;

	public FieldQueryData(String field, Object value)
	{
		this.field = field;
		this.value = value;
	}

	public String getField()
	{
		return field;
	}

	public Object getValue()
	{
		return value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy