Java Enums
enum defines a fixed set of named constants. Safer than int/string flags.
Can have fields and methods.
Compare with == for enum constants.
Write one tiny example for Enums. Compile, print one result, and say the output out loud before you type.
Use Enums only when the problem needs it. Don’t force it into every program. Know one beginner trap.
Let's take this on the board with one tiny Main class — no extra files. Java Enums — prints MON and true — enums are typed constants. Start from main, go line by line, and stop at each print. That output is the proof for Enums.
Show Day.MONDAY style usage in one line.