enum Suit: String { case spades = "♠" case hearts = "♥" case diamonds = "♦" case clubs =
I know that Java enums are compiled to classes with private constructors and a bunch of public static members.
Say I have an enum which is just public enum Blah { A, B, C, D } and I would like to find the enum value