public interface Interface { String getName(); default void sayHello() { System.out.println("Hello " + getName()); } }