/** * Provides an enumeration for the 8 colors allowed in a simple ANSI terminal. * These can be passed into the Terminal class's setForeground and setBackground * methods to allow printing in color to the terminal window * */ public enum Color { BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE }