Enum AnsiColor

    • Enum Constant Detail

      • COLOR_RESET

        public static final AnsiColor COLOR_RESET
      • COLOR_BLACK

        public static final AnsiColor COLOR_BLACK
      • COLOR_RED

        public static final AnsiColor COLOR_RED
      • COLOR_GREEN

        public static final AnsiColor COLOR_GREEN
      • COLOR_YELLOW

        public static final AnsiColor COLOR_YELLOW
      • COLOR_BLUE

        public static final AnsiColor COLOR_BLUE
      • COLOR_PURPLE

        public static final AnsiColor COLOR_PURPLE
      • COLOR_CYAN

        public static final AnsiColor COLOR_CYAN
      • COLOR_WHITE

        public static final AnsiColor COLOR_WHITE
      • STYLE_REVERSED

        public static final AnsiColor STYLE_REVERSED
      • STYLE_BOLD

        public static final AnsiColor STYLE_BOLD
      • STYLE_UNDERLINE

        public static final AnsiColor STYLE_UNDERLINE
    • Method Detail

      • values

        public static AnsiColor[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (AnsiColor c : AnsiColor.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AnsiColor valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getColor

        public String getColor()