Even if it is technically possible, Restricted Identifiers
should not be used as identifiers. This is only possible for compatibility reasons, using it in Java code is confusing and should be avoided.
Note that this applies to any version of Java, including the one where these identifiers are not yet restricted, to avoid future confusion.
This rule reports an issue when restricted identifiers:
are used as identifiers.
Noncompliant code example
var var = "var"; // Noncompliant: compiles but this code is confusing
var = "what is this?";
int yield(int i) { // Noncompliant
return switch (i) {
case 1: yield(0); // This is a yield from switch expression, not a recursive call.
default: yield(i-1);
};
}
String record = "record"; // Noncompliant
Compliant solution
var myVariable = "var";
int minusOne(int i) {
return switch (i) {
case 1: yield(0);
default: yield(i-1);
};
}
String myRecord = "record";