All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.pmd.lang.java.ast.ASTSwitchBranch Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
/**
 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
 */

package net.sourceforge.pmd.lang.java.ast;

import org.checkerframework.checker.nullness.qual.Nullable;

/**
 * A branch of a {@link ASTSwitchLike SwitchLike}.
 *
 * 
 *
 * SwitchBranch ::= {@link ASTSwitchArrowBranch SwitchArrowBranch}
 *                | {@link ASTSwitchFallthroughBranch FallthroughBranch}
 *
 * 
*/ public interface ASTSwitchBranch extends JavaNode { /** * Returns the label, which may be compound. */ default ASTSwitchLabel getLabel() { return (ASTSwitchLabel) getFirstChild(); } /** Return true if this is the default branch. */ default boolean isDefault() { return getLabel().isDefault(); } /** Returns the next branch, if it exists. */ default @Nullable ASTSwitchBranch getNextBranch() { return (ASTSwitchBranch) getNextSibling(); } /** Returns the previous branch, if it exists. */ default @Nullable ASTSwitchBranch getPreviousBranch() { JavaNode prev = getPreviousSibling(); return prev instanceof ASTSwitchBranch ? (ASTSwitchBranch) prev : null; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy