com.tukeof.common.legacy.Month3Enum 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 Month3Enum {
jan(1), feb(2), mar(3), apr(4), may(5), jun(6), jul(7), aug(8), sep(9), oct(10), nov(11), dec(12);
final private int value;
Month3Enum(int v) {
value = v;
}
Month3Enum() {
value = 0;
}
public int val() {
return value;
}
}