com.tukeof.common.legacy.Year1Enum 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 Year1Enum {
z(0), o(1), t(2), r(3), f(4), v(5), x(6), s(7), e(8), n(9);
final private int value;
Year1Enum(int v) {
value = v;
}
Year1Enum() {
value = 0;
}
public int val() {
return value;
}
}