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

de.otto.flummi.SortOrder Maven / Gradle / Ivy

The newest version!
package de.otto.flummi;

public enum SortOrder {
    /**
     * Ascending order.
     */
    ASC {
        @Override
        public String toString() {
            return "asc";
        }
    },
    /**
     * Descending order.
     */
    DESC {
        @Override
        public String toString() {
            return "desc";
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy