enum Suit { HEARTS("H"), DIAMONDS("D"), CLUBS("C"), SPADES("S"); private String abbrev; Suit(String abbrev) { this.abbrev = abbrev; } String shortName() { return abbrev; } } Further reading: https://www.javatpo