se.l4.silo.search.query.FieldQueryData 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.
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;
}
}