An enum (enumeration) is a special class that represents a fixed set of named constants. Java enums are full-fledged classes — they can have fields, constructors, and methods.
Basic enum
An enum (enumeration) is a special class that represents a fixed set of named constants. Java enums are full-fledged classes — they can have fields, constructors, and methods.