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

personthecat.catlib.event.error.Severity Maven / Gradle / Ivy

Go to download

Utilities for serialization, commands, noise generation, IO, and some new data types.

The newest version!
package personthecat.catlib.event.error;

public enum Severity {
    WARN,
    ERROR,
    FATAL;

    public boolean isAtLeast(final Severity rhs) {
        return this.ordinal() >= rhs.ordinal();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy