001package gudusoft.gsqlparser.pp.score;
002
003/** Severity of a {@link Finding}. Serialised lower-case in JSON. */
004public enum Severity {
005    INFO, MINOR, MAJOR, BUG;
006
007    /** Lower-case wire name (the JSON contract). */
008    public String wireName() {
009        return name().toLowerCase(java.util.Locale.ROOT);
010    }
011}