kemitix-checkstyle-ruleset/builder/src/main/resources/rules/ConstantName.md

16 lines
323 B
Markdown
Raw Normal View History

> This check cannot be suppressed.
Requires constants (static, final fields) to be all uppercase. Numbers and numbers are permitted but not as the first character.
Valid:
````
private static final int JACK_CARD = 11;
````
Invalid:
````
private static final int ace_card = 1;
private static final int 12_CARD = 12;
````