Contains the Naming conventions checks that are bundled with the main distribution.
Ensures that the names of abstract classes conforming to some regular expression.
Rationale: Abstract classes are convenience base class implementations of interfaces, not types as such.
Checks that constant names conform to a format specified by the format property. A constant is a static and final field or an interface/annotation field, except serialVersionUID and serialPersistentFields .
Checks that local final variable names conform to a format specified by the format property.
Checks that local, non-final variable names conform to a format specified by the format property.
Checks that instance variable names conform to a format specified by the format property.
Checks that method names conform to a format specified by the format property.
Checks that package names conform to a format specified by the format property.
Checks that parameter names conform to a format specified by the format property.
Checks that static, non-final variable names conform to a format specified by the format property.
Checks that type names conform to a format specified by the format property.