All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.java.rules.squid.S2912.html Maven / Gradle / Ivy

There is a newer version: 8.6.0.37351
Show newest version

One thing that makes good code good is the clarity with which it conveys the intent of the original programmer to maintainers, and the proper choice of indexOf methods can help move code from confusing to clear.

If you need to see whether a substring is located beyond a certain point in a string, you can test the indexOf the substring versus the target point, or you can use the version of indexOf which takes a starting point argument. The latter is arguably clearer because the result is tested against -1, which is an easily recognizable "not found" indicator.

Noncompliant Code Example

String name = "ismael";

if (name.indexOf("ae") > 2) { // Noncompliant
// ...
}

Compliant Solution

String name = "ismael";

if (name.indexOf("ae", 2) > -1) {
// ...
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy