static { for (Suit s : Suit.values()) { sMap.put(s.ordinal(), s); } }
public static Suit fromIndex(int index) { return Suit.values()[index]; }