public class LeftCurlyCheck extends AbstractCheck
Checks for the placement of left curly braces ('{'
) for code blocks.
option
- Specify the policy on placement of a left curly brace
('{'
).
Type is com.puppycrawl.tools.checkstyle.checks.blocks.LeftCurlyOption
.
Default value is eol
.
ignoreEnums
- Allow to ignore enums when left curly brace policy is EOL.
Type is boolean
.
Default value is true
.
tokens
- tokens to check
Type is int[]
.
Default value is:
ANNOTATION_DEF,
CLASS_DEF,
CTOR_DEF,
ENUM_CONSTANT_DEF,
ENUM_DEF,
INTERFACE_DEF,
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,
METHOD_DEF,
OBJBLOCK,
STATIC_INIT.
To configure the check:
<module name="LeftCurly"/>
To configure the check to apply the nl
policy to type blocks:
<module name="LeftCurly"> <property name="option" value="nl"/> <property name="tokens" value="CLASS_DEF,INTERFACE_DEF"/> </module>
An example of how to configure the check to validate enum definitions:
<module name="LeftCurly"> <property name="ignoreEnums" value="false"/> </module>
Parent is com.puppycrawl.tools.checkstyle.TreeWalker
Violation Message Keys:
line.break.after
line.new
line.previous
AutomaticBean.OutputStreamOptions
Modifier and Type | Field and Description |
---|---|
static String |
MSG_KEY_LINE_BREAK_AFTER
A key is pointing to the warning message text in "messages.properties"
file.
|
static String |
MSG_KEY_LINE_NEW
A key is pointing to the warning message text in "messages.properties"
file.
|
static 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)
Setter to allow to ignore enums when left curly brace policy is EOL.
|
void |
setOption(String optionStr)
Setter to specify the policy on placement of a left curly brace (
'{' ). |
void |
visitToken(DetailAST ast)
Called to process a token.
|
beginTree, clearMessages, destroy, finishTree, getFileContents, getLine, getLines, getMessages, getTabWidth, getTokenNames, init, isCommentNodesRequired, leaveToken, log, log, log, setFileContents, setTabWidth, setTokens
finishLocalSetup, getCustomMessages, getId, getMessageBundle, getSeverity, getSeverityLevel, setId, setSeverity
configure, contextualize, getConfiguration, setupChild
public static final String MSG_KEY_LINE_NEW
public static final String MSG_KEY_LINE_PREVIOUS
public static final String MSG_KEY_LINE_BREAK_AFTER
public LeftCurlyCheck()
public void setOption(String optionStr)
'{'
).optionStr
- string to decode option fromIllegalArgumentException
- if unable to decodepublic void setIgnoreEnums(boolean ignoreEnums)
ignoreEnums
- check's option for ignoring enums.public int[] getDefaultTokens()
AbstractCheck
getDefaultTokens
in class AbstractCheck
TokenTypes
public int[] getAcceptableTokens()
AbstractCheck
getAcceptableTokens
in class AbstractCheck
TokenTypes
public int[] getRequiredTokens()
AbstractCheck
getRequiredTokens
in class AbstractCheck
TokenTypes
public void visitToken(DetailAST ast)
AbstractCheck
visitToken
in class AbstractCheck
ast
- the token to processCopyright © 2001–2020. All rights reserved.