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

me.legrange.console.BarStyle Maven / Gradle / Ivy

The newest version!
package me.legrange.console;

public enum BarStyle {

    HIGH_RES(" ", "▏", "▎", "▍", "▌", "▋", "▊", "▉", "█"),
    SHADED2("░","▓"),
    SHADED4("░", "▒", "▓", "█"),
    CIRCLES("◯" ,"●");

    private final String[] chars;
    BarStyle(String...chars) {
        this.chars = chars;
    }

    public String[] chars() {
        return chars;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy