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

org.valkyriercp.core.Severity Maven / Gradle / Ivy

There is a newer version: 1.3
Show newest version
package org.valkyriercp.core;

public enum Severity {
    INFO(0, "info"),
    WARNING(50, "warning"),
    ERROR(100, "error")
    ;
    private int weight;
    private String label;

    Severity(int weight, String label) {
        this.weight = weight;
        this.label = label;
    }

    public int getWeight() {
        return weight;
    }

    public String getLabel() {
        return label;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy