com.github.adminfaces.persistence.model.AdminSort Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of admin-persistence Show documentation
Show all versions of admin-persistence Show documentation
Provides CRUD utilities for CDI, JPA and JSF based applications.
package com.github.adminfaces.persistence.model;
/**
* Created by rmpestano
*/
public enum AdminSort {
ASCENDING, DESCENDING, UNSORTED;
public boolean isAscending() {
return ASCENDING.equals(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy