com.tukeof.common.legacy.Year2Enum 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 Year2Enum {
ze(0), on(1), to(2), th(3), fo(4), fi(5), si(6), se(7), ei(8), ni(9);
final private int value;
Year2Enum(int v) {
value = v;
}
Year2Enum() {
value = 0;
}
public int val() {
return value;
}
}