Static methods in Java interfaces to be implemented by classes that implement the interface
I know that it is possible to define static methods in Java interfaces that are bound to the interface itself. However, I would like to define the signature of a static method to be implemented by the class that implements the interface. This would allow to use the design pattern called Static Creation Method.