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

de.firemage.autograder.span.Style Maven / Gradle / Ivy

There is a newer version: 0.6.2
Show newest version
package de.firemage.autograder.span;

public enum Style {
    ERROR(Color.RED, '^', '^'),
    WARNING(Color.YELLOW, '^', '^'),
    NOTE(Color.BLUE, '-', '-'),
    HELP(Color.GREEN, '-', '-');

    private final Color color;
    private final char underline;
    private final char marker;

    private Style(Color color, char underline, char marker) {
        this.color = color;
        this.underline = underline;
        this.marker = marker;
    }

    public String marker() {
        return String.valueOf(this.marker);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy