List of utility methods to do Terminal Bold Output
String | bold(String msg) bold StringBuilder sb = new StringBuilder("\033[1m"); sb.append(msg).append("\033[0m"); return sb.toString(); |
String | bold(String str) Wrap the given string with the control characters to make the text appear bold in the console return (SET_BOLD_TEXT + str + SET_PLAIN_TEXT);
|
String | boldcolorizeText(String str, String color) boldcolorize Text return INTERNAL_MARKER + BOLD + INTERNAL_MARKER + color + str + INTERNAL_MARKER + RESET_ALL;
|
String | boldcolorizeText(String str, String fgc, String bgc) Creates a string with the given high intensity foregroundcolor and the given backgroundcolor. return INTERNAL_MARKER + BOLD + INTERNAL_MARKER + fgc + INTERNAL_MARKER + bgc.toLowerCase() + str
+ INTERNAL_MARKER + RESET_ALL;
|
String | boldText(String str) Creates a string with high intensity (bold). return INTERNAL_MARKER + BOLD + str + INTERNAL_MARKER + BOLD_OFF;
|