Skip to content

Files

Latest commit

 

History

History
20 lines (11 loc) · 445 Bytes

FinalClass.md

File metadata and controls

20 lines (11 loc) · 445 Bytes

Pattern: Class not declared as final

Issue: -

Description

Checks that a class which has only private constructors is declared as final. Doesn't check for classes nested in interfaces or annotations, as they are always final there.

Examples

To configure the check:

<module name="FinalClass"/>

Further Reading