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

rules.TernaryPerExpressionCount.md Maven / Gradle / Ivy


Checks that there is at most one ternary statments (`?:`) within an expression.

Invalid:
````
String x = value != null ? "A" : "B" + value == null ? "C" : "D"
````




© 2015 - 2024 Weber Informatics LLC | Privacy Policy