Back to Intellij Community

ExtendsUtilityClass

java/java-impl/resources/inspectionDescriptions/ExtendsUtilityClass.html

2025.3-rc-2487 B
Original Source

Reports classes that extend a utility class.

A utility class is a non-empty class in which all fields and methods are static. Extending a utility class also allows for inadvertent object instantiation of the utility class, because the constructor cannot be made private in order to allow extension.

Configure the inspection:

  • Use the Ignore if overriding class is a utility class option to ignore any classes that override a utility class but are also utility classes themselves.