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

se.l4.silo.search.SortItem Maven / Gradle / Ivy

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

public class SortItem
{
	private final String field;
	private final boolean ascending;
	private final Object params;

	public SortItem(String field, boolean ascending, Object params)
	{
		this.field = field;
		this.ascending = ascending;
		this.params = params;
	}

	public String getField()
	{
		return field;
	}

	public boolean isAscending()
	{
		return ascending;
	}

	public Object getParams()
	{
		return params;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy