Uses of Class
com.puppycrawl.tools.checkstyle.FileStatefulCheck
- 
Packages that use FileStatefulCheck Package Description com.puppycrawl.tools.checkstyle Contains the implementation of the Checkstyle framework.com.puppycrawl.tools.checkstyle.checks Contains the checks that are bundled with the main distribution.com.puppycrawl.tools.checkstyle.checks.coding Contains the Coding checks that are bundled with the main distribution.com.puppycrawl.tools.checkstyle.checks.design Contains the Class Design checks that are bundled with the main distribution.com.puppycrawl.tools.checkstyle.checks.imports Contains the Imports checks that are bundled with the main distribution.com.puppycrawl.tools.checkstyle.checks.indentation Contains all classes required for the indentation check.com.puppycrawl.tools.checkstyle.checks.javadoc Contains the Javadoc checks that are bundled with the main distribution.com.puppycrawl.tools.checkstyle.checks.metrics Contains the Metrics checks that are bundled with the main distribution.com.puppycrawl.tools.checkstyle.checks.regexp Contains the regular expression checks that are bundled with the main distribution.com.puppycrawl.tools.checkstyle.checks.sizes Contains the Size Violations checks that are bundled with the main distribution.com.puppycrawl.tools.checkstyle.checks.whitespace Contains the Whitespace checks that are bundled with the main distribution.com.puppycrawl.tools.checkstyle.meta Contains module metadata generation classes for checkstyle. - 
- 
Uses of FileStatefulCheck in com.puppycrawl.tools.checkstyle
Classes in com.puppycrawl.tools.checkstyle with annotations of type FileStatefulCheck Modifier and Type Class Description classTreeWalkerResponsible for walking an abstract syntax tree and notifying interested checks at each each node. - 
Uses of FileStatefulCheck in com.puppycrawl.tools.checkstyle.checks
Classes in com.puppycrawl.tools.checkstyle.checks with annotations of type FileStatefulCheck Modifier and Type Class Description classAvoidEscapedUnicodeCharactersCheckRestricts using Unicode escapes (such as \u221e).classDescendantTokenCheckChecks for restricted tokens beneath other tokens.classOuterTypeFilenameCheckChecks that the outer type name and the file name match.classUncommentedMainCheckDetects uncommentedmainmethods. - 
Uses of FileStatefulCheck in com.puppycrawl.tools.checkstyle.checks.coding
Classes in com.puppycrawl.tools.checkstyle.checks.coding with annotations of type FileStatefulCheck Modifier and Type Class Description classAbstractSuperCheckAbstract class for checking that an overriding method with no parameters invokes the super method.classCovariantEqualsCheckChecks that classes and records which define a covariantequals()method also override methodequals(Object).classDeclarationOrderCheckChecks that the parts of a class, record, or interface declaration appear in the order suggested by the Code Conventions for the Java Programming Language.classEqualsAvoidNullCheckChecks that any combination of String literals is on the left side of anequals()comparison.classEqualsHashCodeCheckChecks that classes that either overrideequals()orhashCode()also overrides the other.classFinalLocalVariableCheckChecks that local variables that never have their values changed are declared final.classHiddenFieldCheckChecks that a local variable or a parameter does not shadow a field that is defined in the same class.classIllegalInstantiationCheckChecks for illegal instantiations where a factory method is preferred.classIllegalTypeCheckChecks that particular classes or interfaces are never used.classModifiedControlVariableCheckChecks that for loop control variables are not modified inside the for block.classMultipleStringLiteralsCheckChecks for multiple occurrences of the same string literal within a single file.classNestedForDepthCheckRestricts nestedforblocks to a specified depth.classNestedIfDepthCheckRestricts nested if-else blocks to a specified depth.classNestedTryDepthCheckRestricts nested try-catch-finally blocks to a specified depth.classOneStatementPerLineCheckChecks that there is only one statement per line.classPackageDeclarationCheckEnsures that a class has a package declaration, and (optionally) whether the package name matches the directory name for the source file.classParameterAssignmentCheckDisallows assignment of parameters.classRequireThisCheckChecks that references to instance variables and methods of the present object are explicitly of the form "this.varName" or "this.methodName(args)" and that those references don't rely on the default behavior when "this." is absent.classReturnCountCheckRestricts the number of return statements in methods, constructors and lambda expressions.classUnnecessaryParenthesesCheckChecks if unnecessary parentheses are used in a statement or expression. - 
Uses of FileStatefulCheck in com.puppycrawl.tools.checkstyle.checks.design
Classes in com.puppycrawl.tools.checkstyle.checks.design with annotations of type FileStatefulCheck Modifier and Type Class Description classFinalClassCheckChecks that a class which has only private constructors is declared as final.classInnerTypeLastCheckChecks nested (internal) classes/interfaces are declared at the bottom of the primary (top-level) class after all init and static init blocks, method, constructor and field declarations.classMutableExceptionCheckEnsures that exception classes (classes with names conforming to some regular expression and explicitly extending classes with names conforming to other regular expression) are immutable, that is, that they have only final fields.classVisibilityModifierCheckChecks visibility of class members. - 
Uses of FileStatefulCheck in com.puppycrawl.tools.checkstyle.checks.imports
Classes in com.puppycrawl.tools.checkstyle.checks.imports with annotations of type FileStatefulCheck Modifier and Type Class Description classCustomImportOrderCheckChecks that the groups of import declarations appear in the order specified by the user.classImportControlCheckControls what can be imported in each package and file.classImportOrderCheckChecks the ordering/grouping of imports.classRedundantImportCheckChecks for redundant import statements.classUnusedImportsCheckChecks for unused import statements. - 
Uses of FileStatefulCheck in com.puppycrawl.tools.checkstyle.checks.indentation
Classes in com.puppycrawl.tools.checkstyle.checks.indentation with annotations of type FileStatefulCheck Modifier and Type Class Description classIndentationCheckChecks correct indentation of Java code. - 
Uses of FileStatefulCheck in com.puppycrawl.tools.checkstyle.checks.javadoc
Classes in com.puppycrawl.tools.checkstyle.checks.javadoc with annotations of type FileStatefulCheck Modifier and Type Class Description classJavadocMethodCheckChecks the Javadoc of a method or constructor.classMissingJavadocMethodCheckChecks for missing Javadoc comments for a method or constructor. - 
Uses of FileStatefulCheck in com.puppycrawl.tools.checkstyle.checks.metrics
Classes in com.puppycrawl.tools.checkstyle.checks.metrics with annotations of type FileStatefulCheck Modifier and Type Class Description classAbstractClassCouplingCheckBase class for coupling calculation.classBooleanExpressionComplexityCheckRestricts the number of boolean operators (&&,||,&,|and^) in an expression.classCyclomaticComplexityCheckChecks cyclomatic complexity against a specified limit.classJavaNCSSCheckDetermines complexity of methods, classes and files by counting the Non Commenting Source Statements (NCSS).classNPathComplexityCheckChecks the NPATH complexity against a specified limit. - 
Uses of FileStatefulCheck in com.puppycrawl.tools.checkstyle.checks.regexp
Classes in com.puppycrawl.tools.checkstyle.checks.regexp with annotations of type FileStatefulCheck Modifier and Type Class Description classRegexpCheckChecks that a specified pattern exists, exists less than a set number of times, or does not exist in the file. - 
Uses of FileStatefulCheck in com.puppycrawl.tools.checkstyle.checks.sizes
Classes in com.puppycrawl.tools.checkstyle.checks.sizes with annotations of type FileStatefulCheck Modifier and Type Class Description classExecutableStatementCountCheckRestricts the number of executable statements to a specified limit.classMethodCountCheckChecks the number of methods declared in each type declaration by access modifier or total count.classOuterTypeNumberCheckChecks for the number of types declared at the outer (or root) level in a file. - 
Uses of FileStatefulCheck in com.puppycrawl.tools.checkstyle.checks.whitespace
Classes in com.puppycrawl.tools.checkstyle.checks.whitespace with annotations of type FileStatefulCheck Modifier and Type Class Description classGenericWhitespaceCheckChecks that the whitespace around the Generic tokens (angle brackets) "<" and ">" are correct to the typical convention. - 
Uses of FileStatefulCheck in com.puppycrawl.tools.checkstyle.meta
Classes in com.puppycrawl.tools.checkstyle.meta with annotations of type FileStatefulCheck Modifier and Type Class Description classJavadocMetadataScraperClass for scraping module metadata from the corresponding class' class-level javadoc. 
 -