Variants
We call the different possibilities that an enum represents its "variants."
So in the following code we would say that the TirePressure enum has three variants: LOW, NORMAL,
and HIGH.
enum TirePressure {
LOW,
NORMAL,
HIGH
}