I was reading an SCJP book by Khalid Mughal and I came across a statement
Enum constants are static members
and another
Enum constant is an instance of its enum type
. I am unable to reconcile the 2 statements. Are the constants static members or are they instances ? (Instances means using new, though we can't ourselves create instances of the enum type)