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

me.tongfei.progressbar.ProgressBarStyle Maven / Gradle / Ivy

There is a newer version: 0.10.1
Show newest version
package me.tongfei.progressbar;

/**
 * Represents the display style of a progress bar.
 * @author Tongfei Chen
 * @since 0.5.1
 */
public enum ProgressBarStyle {

    /** Use Unicode block characters to draw the progress bar. */
    UNICODE_BLOCK("│", "│", '█', " ▏▎▍▌▋▊▉"),

    /** Use only ASCII characters to draw the progress bar. */
    ASCII("[", "]", '=', ">");

    String leftBracket;
    String rightBracket;
    char block;
    String fractionSymbols;

    ProgressBarStyle(String leftBracket, String rightBracket, char block, String fractionSymbols) {
        this.leftBracket = leftBracket;
        this.rightBracket = rightBracket;
        this.block = block;
        this.fractionSymbols = fractionSymbols;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy