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

fun.feellmoose.enums.State Maven / Gradle / Ivy

There is a newer version: 0.1.3
Show newest version
package fun.feellmoose.enums;

public enum State {
    XYZ("xyz");

    State(String name) {
        this.name = name;
    }

    public final String name;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy