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

rules.UpperEll.md Maven / Gradle / Ivy


Checks that `long` numeric literal values are marked by an upper-case ell ('L'). The lower-case ell ('l') can be mistaken for the numeral one ('1').

Valid:
````
long id = 12345L;
````

Invalid:
````
long id = 12345l;
````




© 2015 - 2024 Weber Informatics LLC | Privacy Policy