What is the pros and cons between Enum and enum-based class implementation in Java?

Viewed 3689

I've recently come across an article discussing the use of an enum-based class implementation in C#, which is quite impressive. The second one here is in Java. However, my colleagues suggest me to use Enum instead.

Could anyone point out any pros and cons using each of them, and when to use it?

5 Answers
Related