Consider the following interface in Java:
public interface I { public final String KEY = \"a\"; }
And the following class:
You should not access your constant in this way, use the static reference instead:
I.KEY //returns "a" B.KEY //returns "b"