public final class NestedForDepthCheck extends AbstractCheck
Restricts nested for blocks to a specified depth.
max - Specify maximum allowed nesting depth.
Type is int.
Default value is 1.
To configure the check:
<module name="NestedForDepth"/>
Example:
for(int i=0; i<10; i++) {
for(int j=0; j<i; j++) {
for(int k=0; k<j; k++) { // violation, max allowed nested loop number is 1
}
}
}
for(int i=0; i<10; i++) {
for(int j=0; j<i; j++) { // ok
}
}
To configure the check to allow nesting depth 2:
<module name="NestedForDepth"> <property name="max" value="2"/> </module>
Example:
for(int i=0; i<10; i++) {
for(int j=0; j<i; j++) {
for(int k=0; k<j; k++) {
for(int l=0; l<k; l++) { // violation, max allowed nested loop number is 2
}
}
}
}
for(int i=0; i<10; i++) {
for(int j=0; j<i; j++) {
for(int k=0; k<j; k++) { // ok
}
}
}
Parent is com.puppycrawl.tools.checkstyle.TreeWalker
Violation Message Keys:
nested.for.depth
AutomaticBean.OutputStreamOptions| Modifier and Type | Field and Description |
|---|---|
private int |
depth
Current nesting depth.
|
private int |
max
Specify maximum allowed nesting depth.
|
static java.lang.String |
MSG_KEY
A key is pointing to the warning message text in "messages.properties"
file.
|
| Constructor and Description |
|---|
NestedForDepthCheck() |
| Modifier and Type | Method and Description |
|---|---|
void |
beginTree(DetailAST rootAST)
Called before the starting to process a tree.
|
int[] |
getAcceptableTokens()
The configurable token set.
|
int[] |
getDefaultTokens()
Returns the default token a check is interested in.
|
int[] |
getRequiredTokens()
The tokens that this check must be registered for.
|
void |
leaveToken(DetailAST ast)
Called after all the child nodes have been process.
|
void |
setMax(int max)
Setter to specify maximum allowed nesting depth.
|
void |
visitToken(DetailAST ast)
Called to process a token.
|
clearViolations, destroy, finishTree, getFileContents, getLine, getLineCodePoints, getLines, getTabWidth, getTokenNames, getViolations, init, isCommentNodesRequired, log, log, log, setFileContents, setTabWidth, setTokensfinishLocalSetup, getCustomMessages, getId, getMessageBundle, getSeverity, getSeverityLevel, setId, setSeverityconfigure, contextualize, getConfiguration, setupChildpublic static final java.lang.String MSG_KEY
private int max
private int depth
public NestedForDepthCheck()
public void setMax(int max)
max - maximum allowed nesting depth.public int[] getDefaultTokens()
AbstractCheckgetDefaultTokens in class AbstractCheckTokenTypespublic int[] getAcceptableTokens()
AbstractCheckgetAcceptableTokens in class AbstractCheckTokenTypespublic int[] getRequiredTokens()
AbstractCheckgetRequiredTokens in class AbstractCheckTokenTypespublic void beginTree(DetailAST rootAST)
AbstractCheckbeginTree in class AbstractCheckrootAST - the root of the treepublic void visitToken(DetailAST ast)
AbstractCheckvisitToken in class AbstractCheckast - the token to processpublic void leaveToken(DetailAST ast)
AbstractCheckleaveToken in class AbstractCheckast - the token leavingCopyright © 2001-2022. All Rights Reserved.