Enum Details
layout: default
title: enum Detail
The enum declaration generates a new class behind the scenes.
-
Each
enumconstant is declared as apublic,static, andfinalfield within the generated class. -
There is no
publicconstructor written for the class. -
You cannot create new
enumconstants at runtime.
Practice Exercise¶
java.lang.Enumis the common base class for allenums.