public class LeftCurlyCheck extends AbstractCheck
Checks the placement of left curly braces.
The policy to verify is specified using the LeftCurlyOption class
and the default one being LeftCurlyOption.EOL.
By default the following tokens are checked:
LAMBDA,
LITERAL_CASE,
LITERAL_CATCH,
LITERAL_DEFAULT,
LITERAL_DO,
LITERAL_ELSE,
LITERAL_FINALLY,
LITERAL_FOR,
LITERAL_IF,
LITERAL_SWITCH,
LITERAL_SYNCHRONIZED,
LITERAL_TRY,
LITERAL_WHILE,
STATIC_INIT.
The policy to verify is specified using the LeftCurlyOption class and
defaults to LeftCurlyOption.EOL.
An example of how to configure the check is:
<module name="LeftCurly"/>
An example of how to configure the check with policy
LeftCurlyOption.NLOW is:
<module name="LeftCurly">
<property name="option" value="nlow"/>
</module>
An example of how to configure the check to validate enum definitions:
<module name="LeftCurly">
<property name="ignoreEnums" value="false"/>
</module>
AutomaticBean.OutputStreamOptions| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
MSG_KEY_LINE_BREAK_AFTER
A key is pointing to the warning message text in "messages.properties"
file.
|
static java.lang.String |
MSG_KEY_LINE_NEW
A key is pointing to the warning message text in "messages.properties"
file.
|
static java.lang.String |
MSG_KEY_LINE_PREVIOUS
A key is pointing to the warning message text in "messages.properties"
file.
|
| Constructor and Description |
|---|
LeftCurlyCheck() |
| 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 |
setIgnoreEnums(boolean ignoreEnums)
Sets whether check should ignore enums when left curly brace policy is EOL.
|
void |
setOption(java.lang.String optionStr)
Set the option to enforce.
|
void |
visitToken(DetailAST ast)
Called to process a token.
|
beginTree, clearMessages, destroy, finishTree, getClassLoader, getFileContents, getLine, getLines, getMessages, getTabWidth, getTokenNames, init, isCommentNodesRequired, leaveToken, log, log, log, setClassLoader, setFileContents, setTabWidth, setTokensfinishLocalSetup, getCustomMessages, getId, getMessageBundle, getSeverity, getSeverityLevel, setId, setSeverityconfigure, contextualize, getConfiguration, setupChildpublic static final java.lang.String MSG_KEY_LINE_NEW
public static final java.lang.String MSG_KEY_LINE_PREVIOUS
public static final java.lang.String MSG_KEY_LINE_BREAK_AFTER
public LeftCurlyCheck()
public void setOption(java.lang.String optionStr)
optionStr - string to decode option fromjava.lang.IllegalArgumentException - if unable to decodepublic void setIgnoreEnums(boolean ignoreEnums)
ignoreEnums - check's option for ignoring enums.public 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-2019. All Rights Reserved.