Back to Intellij Community

GroovyConstantNamingConvention

plugins/groovy/groovy-psi/resources/inspectionDescriptions/GroovyConstantNamingConvention.html

2025.3-rc-2578 B
Original Source

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.

Configure the inspection:

  • Use the Pattern field to specify java.util.regex.Pattern which 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.