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

org.multiverse.api.TraceLevel Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
package org.multiverse.api;

/**
 * @author Peter Veentjer
 */
public enum TraceLevel {

    none, course, fine;

    public boolean isLogableFrom(TraceLevel level) {
        return compareTo(level) >= 0;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy