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

gg.neko.spiceit.enumeration.LogLevel Maven / Gradle / Ivy

Go to download

SpiceIt Application Programming Interface exposes SpiceIt features to the world.

The newest version!
package gg.neko.spiceit.enumeration;

public enum LogLevel {

    TRACE("trace"),
    DEBUG("debug"),
    INFO("info"),
    WARN("warn"),
    ERROR("error");

    private final String methodName;

    LogLevel(String methodName) {
        this.methodName = methodName;
    }

    public String getMethodName() {
        return this.methodName;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy