me.tongfei.progressbar.ProgressBarStyle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of progressbar Show documentation
Show all versions of progressbar Show documentation
A terminal-based progress bar for JVM
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;
}
}