com.jdroid.javaweb.search.Sorting Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdroid-java-webapp Show documentation
Show all versions of jdroid-java-webapp Show documentation
Jdroid library for Java Web apps
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;
}
}