It is a compile-time error to attempt to explicitly instantiate an enum type
(ยง15.9.1). The final clone method in Enum ensures that enum constants can never be cloned, and the special treatment by the serialization mechanism ensures that duplicate instances are never created as a result of deserialization. Reflective instantiation of enum types is prohibited. Together, these four things ensure that no instances of an enum type exist beyond those defined by the enum constants.
What is the drawback of having more instances of enum type other than in the enum declaration?