Java
Loop can be replaced with 'List.replaceAll()'
Warning
New
Last modified: 03 December 2024 Reports loops which can be collapsed into a single List.replaceAll()
call.
Example:
for (int i = 0; i < strings.size(); i++) {
String str = strings.get(i).toLowerCase();
strings.set(i, str);
}
After the quick-fix is applied:
strings.replaceAll(String::toLowerCase);
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
Java8ListReplaceAll
This inspection depends on the Java feature 'Lambda methods in collections', which is available since Java 8.
New in 2022.1
Here you can find the description of settings available for the Loop can be replaced with 'List.replaceAll()' inspection, and the reference of their default values.
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Java, 243.23126 |
Thanks for your feedback!
Was this page helpful?