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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy