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

com.github.adminfaces.persistence.model.AdminSort Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
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