How to use ENUM class in Java
Definition
enum class is for define constant.
It will contain the value that will not change during the program is working
Reason for using the enum class
debugging easily.
History
C: preprocessor : certain number
Java: static final String MALE: cer...
eunhanlee.hashnode.dev2 min read