Your enum has exactly three instances (ACTIVE, PENDING and DELETED) (or would if it was valid code). It does not create new instances every time you reference it. If you had only one element in your enum, instead of three, it would be a singleton.
"Because there is only one instance of each enum constant, it is permitted to use the ==operator in place of the equals method when comparing two object references if it is known that at least one of them refers to an enum constant." (JLS Sec 8.9.1)
Enums in java are classes with several constant instances of themselves. These are created like static final variables. Accessing an enum constant returns a reference to the enum constant. It does not create a new instance of the enum constant.
ACTIVE,PENDINGandDELETED) (or would if it was valid code). It does not create new instances every time you reference it. If you had only one element in your enum, instead of three, it would be a singleton.