InterfaceExtendClass
DRAFT
Observed

InterfaceExtendClass
Incorrect

An interface can extend a class

Correct

An interface cannot extend a class

Correction
Here is what's right.

Wait! Javadoc shows all known implementing classes, which means all classes Javadoc knows about who implement the given interface. A class can implement an interface. However, an interface cannot extend a class.

There is one “exception” to this rule: one could argue that interfaces somehow are subtypes of java.lang.Object (JLS Section 4.10.2 supports this view). While it is technically not exactly true that interfaces inherit the methods of Object (see JLS Section 9.2 “Interface Members”), they behave almost like that.