Without the qualifier, x() would recurse. With the qualifier, the enclosing instance’s x() method is invoked instead.
class Envelope {
void x() {
System.out.println("Hello");
}
class Enclosure {
void x() {
Envelope.this.x(); /* Qualified*/
}
}
}