Uses of Class
com.puppycrawl.tools.checkstyle.checks.AbstractFormatCheck

Packages that use AbstractFormatCheck
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.naming Contains the Naming conventions checks that are bundled with the main distribution. 
 

Uses of AbstractFormatCheck in com.puppycrawl.tools.checkstyle.checks
 

Subclasses of AbstractFormatCheck in com.puppycrawl.tools.checkstyle.checks
 class GenericIllegalRegexpCheck
           A generic check for code problems, the user can search for any pattern.
 class RequiredRegexpCheck
           A check that makes sure that a specified pattern exists in the code.
 class TodoCommentCheck
           A check for TODO comments.
 class TrailingCommentCheck
           The check to ensure that requires that comments be the only thing on a line.
 

Uses of AbstractFormatCheck in com.puppycrawl.tools.checkstyle.checks.coding
 

Subclasses of AbstractFormatCheck in com.puppycrawl.tools.checkstyle.checks.coding
 class IllegalTokenTextCheck
           Checks for illegal token text.
 class IllegalTypeCheck
           Checks that particular class are never used as types in variable declarations, return values or parameters.
 class ReturnCountCheck
           Restricts return statements to a specified count (default = 2).
 

Uses of AbstractFormatCheck in com.puppycrawl.tools.checkstyle.checks.design
 

Subclasses of AbstractFormatCheck in com.puppycrawl.tools.checkstyle.checks.design
 class MutableExceptionCheck
           Ensures that exceptions (defined as any class name conforming to some regular expression) are immutable.
 

Uses of AbstractFormatCheck in com.puppycrawl.tools.checkstyle.checks.naming
 

Subclasses of AbstractFormatCheck in com.puppycrawl.tools.checkstyle.checks.naming
 class AbstractClassNameCheck
           Ensures that the names of abstract classes conforming to some regular expression.
 class AbstractNameCheck
          Abstract class for checking that names conform to a specified format.
 class ConstantNameCheck
           Checks that constant names conform to a format specified by the format property.
 class LocalFinalVariableNameCheck
           Checks that local final variable names conform to a format specified by the format property.
 class LocalVariableNameCheck
           Checks that local, non-final variable names conform to a format specified by the format property.
 class MemberNameCheck
           Checks that instance variable names conform to a format specified by the format property.
 class MethodNameCheck
           Checks that method names conform to a format specified by the format property.
 class PackageNameCheck
           Checks that package names conform to a format specified by the format property.
 class ParameterNameCheck
           Checks that parameter names conform to a format specified by the format property.
 class StaticVariableNameCheck
           Checks that static, non-final variable names conform to a format specified by the format property.
 class TypeNameCheck
           Checks that type names conform to a format specified by the format property.
 


Back to the Checkstyle Home Page