I have 3 different classes that both use some constant values. Currently, I'm defining all of them for each of the class. How do I centralize them?
I tried to create a new static class with just the constants, and then use static import in my classes, but that didn't work. The class could not be imported successfully.
PS: I don't want to use enum and interface.