com.tukeof.common.legacy.OrderEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-core Show documentation
Show all versions of common-core Show documentation
a common and useful pure java library
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;
}
}