5
votes
What is the best way to implement constants in Java ?
In Effective Java 2nd edition, it's recommended that you use enums instead of static ints for constants.
There's a good writeup on enums in Java here:
…
