Class ExpressionOverBlockLambdaCheck
java.lang.Object
com.puppycrawl.tools.checkstyle.AbstractAutomaticBean
com.puppycrawl.tools.checkstyle.api.AbstractViolationReporter
com.puppycrawl.tools.checkstyle.api.AbstractCheck
com.puppycrawl.tools.checkstyle.checks.coding.ExpressionOverBlockLambdaCheck
- All Implemented Interfaces:
Configurable,Contextualizable
Checks that expression lambdas are used instead of single-line block lambdas
where possible.
Rationale: According to the OpenJDK Java Style Guidelines (and general modern Java conventions), expression lambdas are preferred over single-line block lambdas for readability and conciseness.
A single-line block lambda is a lambda whose body is a block ({...})
that fits on a single line and contains only one statement that could be
written as an expression lambda.
- Since:
- 14.1.0
-
Nested Class Summary
Nested classes/interfaces inherited from class com.puppycrawl.tools.checkstyle.AbstractAutomaticBean
AbstractAutomaticBean.OutputStreamOptions -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates a newExpressionOverBlockLambdaCheckinstance. -
Method Summary
Modifier and TypeMethodDescriptionprivate static DetailASTfindSingleStatement(DetailAST slist) Finds the single statement in a block lambda body, or returns null if there are zero or multiple statements.int[]The configurable token set.int[]Returns the default token a check is interested in.private static DetailASTgetLastLambdaToken(DetailAST lambda) Gets the last token in a lambda.int[]The tokens that this check must be registered for.private static booleanhasReturnExpression(DetailAST literalReturn) Checks if a return statement has an expression (not bare return).private static booleanisConvertibleToExpressionLambda(DetailAST statement) Checks if the statement in a block lambda can be rewritten as an expression lambda.private static booleanisSingleLineLambda(DetailAST lambda) Checks if a lambda is single-line.private static booleanisSwitchRuleLambda(DetailAST lambda) Checks if the lambda is a switch rule lambda.voidvisitToken(DetailAST ast) Called to process a token.Methods inherited from class com.puppycrawl.tools.checkstyle.api.AbstractCheck
beginTree, clearViolations, destroy, finishTree, getFileContents, getFilePath, getLine, getLineCodePoints, getLines, getTabWidth, getTokenNames, getViolations, init, isCommentNodesRequired, leaveToken, log, log, log, setFileContents, setTabWidth, setTokensMethods inherited from class com.puppycrawl.tools.checkstyle.api.AbstractViolationReporter
finishLocalSetup, getCustomMessages, getId, getMessageBundle, getSeverity, getSeverityLevel, setId, setSeverityMethods inherited from class com.puppycrawl.tools.checkstyle.AbstractAutomaticBean
configure, contextualize, getConfiguration, setupChild
-
Field Details
-
MSG_KEY
A key is pointing to the warning message text in "messages.properties" file.- See Also:
-
-
Constructor Details
-
ExpressionOverBlockLambdaCheck
public ExpressionOverBlockLambdaCheck()Creates a newExpressionOverBlockLambdaCheckinstance.
-
-
Method Details
-
getDefaultTokens
Description copied from class:AbstractCheckReturns the default token a check is interested in. Only used if the configuration for a check does not define the tokens.- Specified by:
getDefaultTokensin classAbstractCheck- Returns:
- the default tokens
- See Also:
-
getAcceptableTokens
Description copied from class:AbstractCheckThe configurable token set. Used to protect Checks against malicious users who specify an unacceptable token set in the configuration file. The default implementation returns the check's default tokens.- Specified by:
getAcceptableTokensin classAbstractCheck- Returns:
- the token set this check is designed for.
- See Also:
-
getRequiredTokens
Description copied from class:AbstractCheckThe tokens that this check must be registered for.- Specified by:
getRequiredTokensin classAbstractCheck- Returns:
- the token set this must be registered for.
- See Also:
-
visitToken
Description copied from class:AbstractCheckCalled to process a token.- Overrides:
visitTokenin classAbstractCheck- Parameters:
ast- the token to process
-
isSwitchRuleLambda
Checks if the lambda is a switch rule lambda.- Parameters:
lambda- the lambda AST node- Returns:
- true if the lambda is part of a switch rule
-
isSingleLineLambda
Checks if a lambda is single-line.- Parameters:
lambda- the lambda AST node- Returns:
- true if the lambda fits on a single line
-
getLastLambdaToken
Gets the last token in a lambda.- Parameters:
lambda- the lambda AST node- Returns:
- the last token in the lambda
-
findSingleStatement
Finds the single statement in a block lambda body, or returns null if there are zero or multiple statements.- Parameters:
slist- the SLIST node (lambda body)- Returns:
- the single statement, or null if not exactly one
-
isConvertibleToExpressionLambda
Checks if the statement in a block lambda can be rewritten as an expression lambda.- Parameters:
statement- the statement node- Returns:
- true if the statement can be converted to an expression lambda
-
hasReturnExpression
Checks if a return statement has an expression (not bare return).- Parameters:
literalReturn- the LITERAL_RETURN node- Returns:
- true if the return statement has an expression
-