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

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

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy