Uses of Class
net.sourceforge.pmd.lang.java.ast.ASTVariableId
-
Packages that use ASTVariableId Package Description net.sourceforge.pmd.lang.java.ast Contains the classes and interfaces modelling the Java AST.net.sourceforge.pmd.lang.java.rule.codestyle net.sourceforge.pmd.lang.java.rule.errorprone net.sourceforge.pmd.lang.java.rule.performance -
-
Uses of ASTVariableId in net.sourceforge.pmd.lang.java.ast
Methods in net.sourceforge.pmd.lang.java.ast that return ASTVariableId Modifier and Type Method Description @NonNull ASTVariableIdASTCatchParameter. getVarId()ASTVariableIdASTEnumConstant. getVarId()@NonNull ASTVariableIdASTForeachStatement. getVarId()@NonNull ASTVariableIdASTFormalParameter. getVarId()Returns the declarator ID of this formal parameter.@NonNull ASTVariableIdASTLambdaParameter. getVarId()Returns the declarator ID of this formal parameter.ASTVariableIdASTRecordComponent. getVarId()ASTVariableIdASTRecordPattern. getVarId()Returns the declared variable.@NonNull ASTVariableIdASTTypePattern. getVarId()Returns the declared variable.@NonNull ASTVariableIdASTVariableDeclarator. getVarId()Returns the id of the declared variable.Methods in net.sourceforge.pmd.lang.java.ast with parameters of type ASTVariableId Modifier and Type Method Description default RJavaVisitor. visit(ASTVariableId node, P data) -
Uses of ASTVariableId in net.sourceforge.pmd.lang.java.rule.codestyle
Methods in net.sourceforge.pmd.lang.java.rule.codestyle with parameters of type ASTVariableId Modifier and Type Method Description ObjectFormalParameterNamingConventionsRule. visit(ASTVariableId node, Object data)ObjectLocalVariableNamingConventionsRule. visit(ASTVariableId node, Object data) -
Uses of ASTVariableId in net.sourceforge.pmd.lang.java.rule.errorprone
Methods in net.sourceforge.pmd.lang.java.rule.errorprone with parameters of type ASTVariableId Modifier and Type Method Description ObjectNonSerializableClassRule. visit(ASTVariableId node, Object data) -
Uses of ASTVariableId in net.sourceforge.pmd.lang.java.rule.performance
Methods in net.sourceforge.pmd.lang.java.rule.performance with parameters of type ASTVariableId Modifier and Type Method Description ObjectConsecutiveLiteralAppendsRule. visit(ASTVariableId node, Object data)ObjectInsufficientStringBufferDeclarationRule. visit(ASTVariableId node, Object data)ObjectUseStringBufferForStringAppendsRule. visit(ASTVariableId node, Object data)This method is used to check whether user appends string directly instead of using StringBuffer or StringBuilder
-