Uses of Interface
net.sourceforge.pmd.lang.java.ast.ASTPrimaryExpression
-
Packages that use ASTPrimaryExpression Package Description net.sourceforge.pmd.lang.java.ast Contains the classes and interfaces modelling the Java AST. -
-
Uses of ASTPrimaryExpression in net.sourceforge.pmd.lang.java.ast
Subinterfaces of ASTPrimaryExpression in net.sourceforge.pmd.lang.java.ast Modifier and Type Interface Description interface
ASTAssignableExpr
An expression that may be assigned by an assignment expression, or incremented or decremented.static interface
ASTAssignableExpr.ASTNamedReferenceExpr
An assignable expression that has a name, and refers to a symbol.interface
ASTLiteral
A lexical literal.interface
QualifiableExpression
Node that may be qualified by an expression, e.g.Classes in net.sourceforge.pmd.lang.java.ast that implement ASTPrimaryExpression Modifier and Type Class Description class
ASTAmbiguousName
An ambiguous name occurring in any context.class
ASTArrayAccess
An array access expression.class
ASTArrayAllocation
An array creation expression.class
ASTBooleanLiteral
The boolean literal, either "true" or "false".class
ASTCharLiteral
Represents a character literal.class
ASTClassLiteral
A class literal.class
ASTConstructorCall
A class instance creation expression.class
ASTFieldAccess
A field access expression.class
ASTMethodCall
A method invocation expression.class
ASTMethodReference
Method or constructor reference expression.class
ASTNullLiteral
The null literal.class
ASTNumericLiteral
A numeric literal of any type (double, int, long, float, etc).class
ASTPatternExpression
Wraps aASTPattern
node but presents the interface ofASTExpression
.class
ASTStringLiteral
Represents a string literal.class
ASTSuperExpression
The "super" keyword.class
ASTThisExpression
The "this" expression.class
ASTTypeExpression
Wraps a type node but presents the interface ofASTExpression
.class
ASTVariableAccess
An unqualified reference to a variable (either local, or a field that is in scope).Methods in net.sourceforge.pmd.lang.java.ast with parameters of type ASTPrimaryExpression Modifier and Type Method Description R
JavaVisitorBase. visitPrimaryExpr(ASTPrimaryExpression node, P data)
-