Constant naming convention
Reports constant with names which don't match the specified convention.
Constants are fields of immutable type declared with static and final modifiers.
Reports constants whose names are either too short, too long, or do not follow the specified regular expression pattern.
Locating this inspection
- 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.
GroovyConstantNamingConvention- Via Settings dialog
Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.
Configure the inspection:
Use the Pattern field to specify
java.util.regex.Patternwhich a constant name is expected to match.Use the Min length field to specify the minimum length of a constant name.
Use the Max length field to specify the maximum length of a constant name.
Inspection options
Here you can find the description of settings available for the Constant naming convention inspection, and the reference of their default values.
- Pattern
Default value:
[A-Z\d]*- Min length
Default value:
4- Max length
Default value:
32
Suppressing Inspection
You can suppress this inspection by placing the following comment marker before the code fragment where you no longer want messages from this inspection to appear:
More detailed instructions as well as other ways and options that you have can be found in the product documentation:
Inspection Details | |
|---|---|
By default bundled with: |