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

com.jdroid.javaweb.search.Sorting Maven / Gradle / Ivy

The newest version!
package com.jdroid.javaweb.search;

public class Sorting {
	
	private SortingKey sortingKey;
	private Boolean ascending;
	
	public Sorting(SortingKey sortingKey, Boolean ascending) {
		this.sortingKey = sortingKey;
		this.ascending = ascending;
	}
	
	public Sorting(SortingKey sortingKey) {
		this(sortingKey, true);
	}
	
	public Boolean isAscending() {
		return ascending;
	}
	
	public SortingKey getSortingKey() {
		return sortingKey;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy