Here is an interface and a class implementing this interface:
interface A {
static void staticMethod() { }
void method();
default void defaultMethod() { }
abstract void abstractMethod();
}
class B implements A { }
Which methods must be implemented in the class B?