Package com.puppycrawl.tools.checkstyle.checks.metrics
Contains the Metrics checks that are
bundled with the main distribution.
-
Class Summary Class Description AbstractClassCouplingCheck Base class for coupling calculation.BooleanExpressionComplexityCheck Restrict the number of&&
,||
,&
,|
and^
in an expression.ClassDataAbstractionCouplingCheck This metric measures the number of instantiations of other classes within the given class.ClassFanOutComplexityCheck The number of other classes a given class relies on.CyclomaticComplexityCheck Checks cyclomatic complexity against a specified limit.JavaNCSSCheck Determines complexity of methods, classes and files by counting the Non Commenting Source Statements (NCSS).NPathComplexityCheck Checks the NPATH complexity against a specified limit.