How to get names of enum entries?

Though the answer is already provided, Almost no one pointed to the docs

Here’s a snippet

enum Enum {
    A
}
let nameOfA = Enum[Enum.A]; // "A"

Keep in mind that string enum members do not get a reverse mapping generated at all.

Leave a Comment