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 com.puppycrawl.tools.checkstyle.api.DetailAST; 023import com.puppycrawl.tools.checkstyle.api.TokenTypes; 024import com.puppycrawl.tools.checkstyle.utils.CommonUtil; 025import com.puppycrawl.tools.checkstyle.utils.ScopeUtil; 026 027/** 028 * <div> 029 * Checks that local final variable names conform to a specified pattern. 030 * A catch parameter and resources in try statements 031 * are considered to be a local, final variables. 032 * </div> 033 * 034 * <p> 035 * This check does not support final pattern variables. Instead, use 036 * <a href="https://checkstyle.org/checks/naming/patternvariablename.html"> 037 * PatternVariableName</a>. 038 * </p> 039 * 040 * @since 3.0 041 */ 042public class LocalFinalVariableNameCheck 043 extends AbstractNameCheck { 044 045 /** Creates a new {@code LocalFinalVariableNameCheck} instance. */ 046 public LocalFinalVariableNameCheck() { 047 super("^([a-z][a-zA-Z0-9]*|_)$"); 048 } 049 050 @Override 051 public int[] getDefaultTokens() { 052 return getAcceptableTokens(); 053 } 054 055 @Override 056 public int[] getAcceptableTokens() { 057 return new int[] { 058 TokenTypes.VARIABLE_DEF, 059 TokenTypes.PARAMETER_DEF, 060 TokenTypes.RESOURCE, 061 }; 062 } 063 064 @Override 065 public int[] getRequiredTokens() { 066 return CommonUtil.EMPTY_INT_ARRAY; 067 } 068 069 @Override 070 protected final boolean mustCheckName(DetailAST ast) { 071 final DetailAST modifiersAST = 072 ast.findFirstToken(TokenTypes.MODIFIERS); 073 final boolean isFinal = ast.getType() == TokenTypes.RESOURCE 074 || modifiersAST.findFirstToken(TokenTypes.FINAL) != null; 075 return isFinal && ScopeUtil.isLocalVariableDef(ast); 076 } 077 078}