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

step.core.collections.Order Maven / Gradle / Ivy

The newest version!
package step.core.collections;

public enum Order {

    ASC(1),
    DESC(-1);

    public final int numeric;

    Order(int i) {
        this.numeric = i;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy