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 ASTVariableId
ASTCatchParameter. getVarId()
ASTVariableId
ASTEnumConstant. getVarId()
@NonNull ASTVariableId
ASTForeachStatement. getVarId()
@NonNull ASTVariableId
ASTFormalParameter. getVarId()
Returns the declarator ID of this formal parameter.@NonNull ASTVariableId
ASTLambdaParameter. getVarId()
Returns the declarator ID of this formal parameter.ASTVariableId
ASTRecordComponent. getVarId()
ASTVariableId
ASTRecordPattern. getVarId()
Deprecated.This method was added here by mistake.@NonNull ASTVariableId
ASTTypePattern. getVarId()
Returns the declared variable.@NonNull ASTVariableId
ASTVariableDeclarator. 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 R
JavaVisitor. 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 Object
FormalParameterNamingConventionsRule. visit(ASTVariableId node, Object data)
Object
LocalVariableNamingConventionsRule. 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 Object
NonSerializableClassRule. 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 Object
ConsecutiveLiteralAppendsRule. visit(ASTVariableId node, Object data)
Object
InsufficientStringBufferDeclarationRule. visit(ASTVariableId node, Object data)
Object
UseStringBufferForStringAppendsRule. visit(ASTVariableId node, Object data)
This method is used to check whether user appends string directly instead of using StringBuffer or StringBuilder
-