I know the usage of enum in java.
Is recommended to use enums for storing the program constants(rather than the class described below)?
public class Constants{
    public static final String DB_CF_NAME = "agent";
    public static final String DB_CF_ID = "agent_id";
    public static final String DB_CF_TEXT = "agent_text";
    public static final String DB_CF_LATITUDE = "latitude";
}
 
     
     
     
     
    