Is there a way to force classes in Java to have public static final field (through interface or abstract class)? Or at least just a public field?
I need to make sure somehow that a group of classes have
public static final String TYPE = "...";
in them.
MyClass.fieldbut doesn't exists it won't compile so it's enforced implicitly, or the field is not referenced in which case you don't care) – ewernli Mar 17 '10 at 17:01static finalfields are initialised with a compile time constant (as defined by the JLS - essentially primitive and Strings, literals, operators, no methods calls, no nulls). – Tom Hawtin - tackline Mar 17 '10 at 18:26