/**
 *
 */
public interface StaticMethodInInterface {

    public static String get() {
        return "Hello from StaticMethodInInterface.get()";
    }

}
