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 classASTSwitchArrowBranchA non-fallthrough switch rule, introduced with switch expressions.classASTSwitchFallthroughBranchA fallthrough switch branch.Methods in net.sourceforge.pmd.lang.java.ast that return ASTSwitchBranch Modifier and Type Method Description default @Nullable ASTSwitchBranchASTSwitchBranch. getNextBranch()Returns the next branch, if it exists.default @Nullable ASTSwitchBranchASTSwitchBranch. 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 net.sourceforge.pmd.lang.ast.NodeStream<ASTSwitchBranch>ASTSwitchLike. getBranches()Returns a stream of all branches of this switch.default Iterator<ASTSwitchBranch>ASTSwitchLike. iterator()
-