Package util

Class TextDecoratorUtil


  • public class TextDecoratorUtil
    extends java.lang.Object
    The TextDecoratorUtil class provides utility methods for providing text decoration in the console display for the whole application.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String BOLD
      BOLD constant ANSI escape code for bold text
      static java.lang.String ITALIC
      ITALIC constant ANSI escape code for italic text
      static java.lang.String RESET
      RESET constant ANSI reset code
      static java.lang.String UNDERLINE
      UNDERLINE constant ANSI escape code for underline text
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static java.lang.String boldText​(java.lang.String text)
      Formats string to be bold
      static java.lang.String italicText​(java.lang.String text)
      Formats string to be italicized
      static java.lang.String underlineText​(java.lang.String text)
      Formats string to be underlined
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • TextDecoratorUtil

        public TextDecoratorUtil()
        Construct an instance of TextDecoratorUtil
    • Method Detail

      • underlineText

        public static java.lang.String underlineText​(java.lang.String text)
        Formats string to be underlined
        Parameters:
        text - to be formatted
        Returns:
        underlined text
      • boldText

        public static java.lang.String boldText​(java.lang.String text)
        Formats string to be bold
        Parameters:
        text - to be formatted
        Returns:
        bold text
      • italicText

        public static java.lang.String italicText​(java.lang.String text)
        Formats string to be italicized
        Parameters:
        text - to be formatted
        Returns:
        italic text