show/hide this revision's text 2 edited tags
show/hide this revision's text 1

What is the best way to implement constants in Java ?

I've seen examples like this:

public class MaxSeconds {
   public static final int MAX_SECONDS = 25;
}

and supposed that I could have a Constants class to wrap constants in, declaring them static final. I know practically no Java at all and am wondering if this is the best way to create constants.