I want to be able to do something akin to the following
public interface myInterface{
public final String MY_CONST
}
public class myImpl implements myInterface{
MY_CONST="Hello World"
}
Basically, I want to declare a constant in my interface, and define it in my implementation. Is there a way to do something like this in java/groovy?