Pattern: Invalid constant name
Issue: -
Validates identifiers for constants (static
, final
fields).
Property format
in module ConstantName
is used to specify names to be allowed. The following configuration apart from names allowed by default allows log
or logger
:
<module name="ConstantName">
<property name="format"
value="^log(ger)?|[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$"/>
</module>