Guys I am working on a android project in which lots of enum is getting used. now I am writing the whole project from scratch and I want to avoid enums.
I understand that enum provides better code readability and maintainability and type safety. but as per the android documentation I should be avoid using enums.
I have read lots of article related to this and almost every one says that you should avoid using enums in android until unless you are not utilising the power of enum like overriding methods
I am confused now , so the question is should I use enum or not , I was thinking to replace all the enum with class and public static final , what do you guys suggest.