Java
Lambda parameter type can be specified
Info
New
Last modified: 03 December 2024Reports lambda parameters that do not have their type specified and suggests adding the missing type declarations.
Example:
Function<String, Integer> length = a -> a.length();
After the quick-fix is applied:
Function<String, Integer> length = (String a) -> a.length();
- 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.
LambdaParameterTypeCanBeSpecified
This inspection depends on the Java feature 'Lambda expressions', which is available since Java 8.
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Java, 243.23126 |
Thanks for your feedback!
Was this page helpful?