Uses of Class
net.sourceforge.pmd.lang.java.ast.ASTExpression
-
Packages that use ASTExpression Package Description net.sourceforge.pmd.lang.java.ast Contains the classes and interfaces modelling the Java AST.net.sourceforge.pmd.lang.java.dfa net.sourceforge.pmd.lang.java.rule Contains the built-in rules bundled with the Java distribution.net.sourceforge.pmd.lang.java.rule.errorprone net.sourceforge.pmd.lang.java.typeresolution -
-
Uses of ASTExpression in net.sourceforge.pmd.lang.java.ast
Methods in net.sourceforge.pmd.lang.java.ast that return ASTExpression Modifier and Type Method Description ASTExpression
ASTAssertStatement. getCondition()
Returns the expression tested by this assert statement.ASTExpression
ASTDoStatement. getCondition()
Returns the node that represents the guard of this loop.ASTExpression
ASTForStatement. getCondition()
Returns the node that represents the guard of this loop.ASTExpression
ASTIfStatement. getCondition()
Returns the node that represents the guard of this conditional.ASTExpression
ASTWhileStatement. getCondition()
Returns the node that represents the guard of this loop.ASTExpression
ASTAssertStatement. getDetailMessageNode()
Returns the expression that corresponds to the detail message, i.e.ASTExpression
ASTYieldStatement. getExpr()
Returns the yielded expression.ASTExpression
ASTAssertStatement. getGuardExpressionNode()
Deprecated.ASTExpression
ASTDoStatement. getGuardExpressionNode()
Deprecated.ASTExpression
ASTForStatement. getGuardExpressionNode()
Deprecated.ASTExpression
ASTIfStatement. getGuardExpressionNode()
Deprecated.ASTExpression
ASTWhileStatement. getGuardExpressionNode()
Deprecated.ASTExpression
ASTSwitchStatement. getTestedExpression()
Gets the expression tested by this switch.ASTExpression
ASTConditionalExpression. getTrueAlternative()
Returns the node that represents the expression that will be evaluated if the guard evaluates to true.Methods in net.sourceforge.pmd.lang.java.ast with parameters of type ASTExpression Modifier and Type Method Description Object
JavaParserDecoratedVisitor. visit(ASTExpression node, Object data)
Deprecated.Object
JavaParserVisitor. visit(ASTExpression node, Object data)
Deprecated.Object
JavaParserVisitorAdapter. visit(ASTExpression node, Object data)
Object
JavaParserVisitorDecorator. visit(ASTExpression node, Object data)
Deprecated. -
Uses of ASTExpression in net.sourceforge.pmd.lang.java.dfa
Methods in net.sourceforge.pmd.lang.java.dfa with parameters of type ASTExpression Modifier and Type Method Description Object
StatementAndBraceFinder. visit(ASTExpression node, Object data)
-
Uses of ASTExpression in net.sourceforge.pmd.lang.java.rule
Methods in net.sourceforge.pmd.lang.java.rule with parameters of type ASTExpression Modifier and Type Method Description Object
AbstractJavaRule. visit(ASTExpression node, Object data)
-
Uses of ASTExpression in net.sourceforge.pmd.lang.java.rule.errorprone
Methods in net.sourceforge.pmd.lang.java.rule.errorprone with parameters of type ASTExpression Modifier and Type Method Description Object
AssignmentInOperandRule. visit(ASTExpression node, Object data)
-
Uses of ASTExpression in net.sourceforge.pmd.lang.java.typeresolution
Methods in net.sourceforge.pmd.lang.java.typeresolution with parameters of type ASTExpression Modifier and Type Method Description static boolean
MethodTypeResolution. isMethodConvertible(JavaTypeDefinition parameter, ASTExpression argument)
Deprecated.static boolean
MethodTypeResolution. isSubtypeable(JavaTypeDefinition parameter, ASTExpression argument)
Deprecated.Object
ClassTypeResolver. visit(ASTExpression node, Object data)
Deprecated.
-