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

com.jdiai.jsbuilder.LogLevels Maven / Gradle / Ivy

package com.jdiai.jsbuilder;

public enum LogLevels {
    OFF(0),
    FATAL(100),
    ERROR(200),
    WARN(300),
    INFO(400),
    DEBUG(500),
    TRACE(600),
    ALL(2147483647);

    public int value;
    public boolean isLower(LogLevels logLevel) {
        return this.value < logLevel.value;
    }

    LogLevels(final int val) {
        this.value = val;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy