001///////////////////////////////////////////////////////////////////////////////////////////////
002// checkstyle: Checks Java source code and other text files for adherence to a set of rules.
003// Copyright (C) 2001-2025 the original author or authors.
004//
005// This library is free software; you can redistribute it and/or
006// modify it under the terms of the GNU Lesser General Public
007// License as published by the Free Software Foundation; either
008// version 2.1 of the License, or (at your option) any later version.
009//
010// This library is distributed in the hope that it will be useful,
011// but WITHOUT ANY WARRANTY; without even the implied warranty of
012// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
013// Lesser General Public License for more details.
014//
015// You should have received a copy of the GNU Lesser General Public
016// License along with this library; if not, write to the Free Software
017// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
018///////////////////////////////////////////////////////////////////////////////////////////////
019
020package com.puppycrawl.tools.checkstyle.checks.naming;
021
022import java.util.Objects;
023
024import com.puppycrawl.tools.checkstyle.api.DetailAST;
025import com.puppycrawl.tools.checkstyle.api.TokenTypes;
026import com.puppycrawl.tools.checkstyle.utils.TokenUtil;
027
028/**
029 * <div>
030 * Checks lambda parameter names.
031 * </div>
032 *
033 * @since 8.11
034 */
035public class LambdaParameterNameCheck extends AbstractNameCheck {
036
037    /** Creates new instance of {@code LambdaParameterNameCheck}. */
038    public LambdaParameterNameCheck() {
039        super("^([a-z][a-zA-Z0-9]*|_)$");
040    }
041
042    @Override
043    public int[] getDefaultTokens() {
044        return getRequiredTokens();
045    }
046
047    @Override
048    public int[] getAcceptableTokens() {
049        return getRequiredTokens();
050    }
051
052    @Override
053    public int[] getRequiredTokens() {
054        return new int[] {
055            TokenTypes.LAMBDA,
056        };
057    }
058
059    @Override
060    public void visitToken(DetailAST ast) {
061        final boolean isInSwitchRule = ast.getParent().getType() == TokenTypes.SWITCH_RULE;
062
063        if (Objects.nonNull(ast.findFirstToken(TokenTypes.PARAMETERS))) {
064            final DetailAST parametersNode = ast.findFirstToken(TokenTypes.PARAMETERS);
065            TokenUtil.forEachChild(parametersNode, TokenTypes.PARAMETER_DEF, super::visitToken);
066        }
067        else if (!isInSwitchRule) {
068            super.visitToken(ast);
069        }
070    }
071
072    @Override
073    protected boolean mustCheckName(DetailAST ast) {
074        return true;
075    }
076
077}