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

com.tukeof.common.legacy.OrderEnum Maven / Gradle / Ivy

The newest version!
package com.tukeof.common.legacy;

enum OrderEnum {
    first("first"),
    second("second"),
    third("third"),
    four("four"),
    fifth("fifth"),
    sixth("sixth"),
    seventh("seventh"),
    eighth("eighth"),
    ninth("ninth"),
    tenth("tenth"),
    eleventh("eleventh"),
    twelfth("twelfth");

    private String value;

    OrderEnum(String value) {
        this.value = value;
    }

    public String getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy