Enum AnsiColor

    • Enum Constant Detail

      • YELLOW

        public static final AnsiColor YELLOW
      • PURPLE

        public static final AnsiColor PURPLE
      • INTENSE_BLACK

        public static final AnsiColor INTENSE_BLACK
      • INTENSE_RED

        public static final AnsiColor INTENSE_RED
      • INTENSE_YELLOW

        public static final AnsiColor INTENSE_YELLOW
      • INTENSE_BLUE

        public static final AnsiColor INTENSE_BLUE
      • INTENSE_PURPLE

        public static final AnsiColor INTENSE_PURPLE
      • INTENSE_CYAN

        public static final AnsiColor INTENSE_CYAN
      • INTENSE_WHITE

        public static final AnsiColor INTENSE_WHITE
      • INTENSE_GREEN

        public static final AnsiColor INTENSE_GREEN
      • BOLD_INTENSE_BLACK

        public static final AnsiColor BOLD_INTENSE_BLACK
      • BOLD_INTENSE_RED

        public static final AnsiColor BOLD_INTENSE_RED
      • BOLD_INTENSE_YELLOW

        public static final AnsiColor BOLD_INTENSE_YELLOW
      • BOLD_INTENSE_BLUE

        public static final AnsiColor BOLD_INTENSE_BLUE
      • BOLD_INTENSE_PURPLE

        public static final AnsiColor BOLD_INTENSE_PURPLE
      • BOLD_INTENSE_CYAN

        public static final AnsiColor BOLD_INTENSE_CYAN
      • BOLD_INTENSE_WHITE

        public static final AnsiColor BOLD_INTENSE_WHITE
      • BOLD_INTENSE_GREEN

        public static final AnsiColor BOLD_INTENSE_GREEN
      • NOTHING

        public static final AnsiColor NOTHING
    • 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