public class EmptyForIteratorPadCheck extends AbstractCheck
Checks the padding of an empty for iterator; that is whether a white space is required at an empty for iterator, or such white space is forbidden. No check occurs if there is a line wrap at the iterator, as in
for (Iterator foo = very.long.line.iterator();
foo.hasNext();
)
option - Specify policy on how to pad an empty for iterator.
Type is com.puppycrawl.tools.checkstyle.checks.whitespace.PadOption.
Default value is nospace.
To configure the check:
<module name="EmptyForIteratorPad"/>
Example:
for (Iterator it = map.entrySet().iterator(); it.hasNext();); // ok
for (Iterator it = map.entrySet().iterator(); it.hasNext(); ); // violation since whitespace
//after semicolon
for (Iterator foo = very.long.line.iterator();
foo.hasNext();
); // ok
To configure the check to require white space at an empty for iterator:
<module name="EmptyForIteratorPad"> <property name="option" value="space"/> </module>
Example:
for (Iterator it = map.entrySet().iterator(); it.hasNext();); // violation as there is no
// whitespace after semicolon
for (Iterator it = map.entrySet().iterator(); it.hasNext(); ); // ok
for (Iterator foo = very.long.line.iterator();
foo.hasNext();
); // violation as there is no whitespace after semicolon
Parent is com.puppycrawl.tools.checkstyle.TreeWalker
Violation Message Keys:
ws.followed
ws.notFollowed
AutomaticBean.OutputStreamOptions| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
MSG_WS_FOLLOWED
A key is pointing to the warning message text in "messages.properties"
file.
|
static java.lang.String |
MSG_WS_NOT_FOLLOWED
A key is pointing to the warning message text in "messages.properties"
file.
|
private PadOption |
option
Specify policy on how to pad an empty for iterator.
|
private static java.lang.String |
SEMICOLON
Semicolon literal.
|
| Constructor and Description |
|---|
EmptyForIteratorPadCheck() |
| Modifier and Type | Method and Description |
|---|---|
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 |
setOption(java.lang.String optionStr)
Setter to specify policy on how to pad an empty for iterator.
|
void |
visitToken(DetailAST ast)
Called to process a token.
|
beginTree, clearViolations, destroy, finishTree, getFileContents, getLine, getLineCodePoints, getLines, getTabWidth, getTokenNames, getViolations, init, isCommentNodesRequired, leaveToken, log, log, log, setFileContents, setTabWidth, setTokensfinishLocalSetup, getCustomMessages, getId, getMessageBundle, getSeverity, getSeverityLevel, setId, setSeverityconfigure, contextualize, getConfiguration, setupChildpublic static final java.lang.String MSG_WS_FOLLOWED
public static final java.lang.String MSG_WS_NOT_FOLLOWED
private static final java.lang.String SEMICOLON
public EmptyForIteratorPadCheck()
public void setOption(java.lang.String optionStr)
optionStr - string to decode option fromjava.lang.IllegalArgumentException - if unable to decodepublic int[] getDefaultTokens()
AbstractCheckgetDefaultTokens in class AbstractCheckTokenTypespublic int[] getAcceptableTokens()
AbstractCheckgetAcceptableTokens in class AbstractCheckTokenTypespublic int[] getRequiredTokens()
AbstractCheckgetRequiredTokens in class AbstractCheckTokenTypespublic void visitToken(DetailAST ast)
AbstractCheckvisitToken in class AbstractCheckast - the token to processCopyright © 2001-2022. All Rights Reserved.