Uses of Interface
net.sourceforge.pmd.lang.java.ast.ASTSwitchBranch
-
Packages that use ASTSwitchBranch Package Description net.sourceforge.pmd.lang.java.ast Contains the classes and interfaces modelling the Java AST. -
-
Uses of ASTSwitchBranch in net.sourceforge.pmd.lang.java.ast
Classes in net.sourceforge.pmd.lang.java.ast that implement ASTSwitchBranch Modifier and Type Class Description class
ASTSwitchArrowBranch
A non-fallthrough switch rule, introduced with switch expressions.class
ASTSwitchFallthroughBranch
A fallthrough switch branch.Methods in net.sourceforge.pmd.lang.java.ast that return ASTSwitchBranch Modifier and Type Method Description default @Nullable ASTSwitchBranch
ASTSwitchBranch. getNextBranch()
Returns the next branch, if it exists.default @Nullable ASTSwitchBranch
ASTSwitchBranch. getPreviousBranch()
Returns the previous branch, if it exists.Methods in net.sourceforge.pmd.lang.java.ast that return types with arguments of type ASTSwitchBranch Modifier and Type Method Description default NodeStream<ASTSwitchBranch>
ASTSwitchLike. getBranches()
Returns a stream of all branches of this switch.default Iterator<ASTSwitchBranch>
ASTSwitchLike. iterator()
-