/* * Color.java * * Created on February 24, 2005, 1:13 AM */ package chess; /** * * @author Mike */ public enum Color { black, white, empty } /* public String toShortString () { String res; switch (this) { case black: res = "B"; break; case white: res = "W"; break; case empty: res = " "; } return res; } } **/