Module jdk.compiler

Interface PatternCaseLabelTree

All Superinterfaces:
CaseLabelTreePREVIEW, Tree

public interface PatternCaseLabelTree extends CaseLabelTreePREVIEW
PatternCaseLabelTree is a reflective preview API of the Java platform.
Preview features may be removed in a future release, or upgraded to permanent features of the Java platform.
A case label element that refers to an expression
Since:
19
  • Nested Class Summary

    Nested classes/interfaces declared in interface com.sun.source.tree.Tree

    Tree.Kind
  • Method Summary

    Modifier and Type
    Method
    Description
    The guard for the case.
    The pattern for the case.

    Methods declared in interface com.sun.source.tree.Tree

    accept, getKind
  • Method Details

    • getPattern

      PatternTree getPattern()
      The pattern for the case.
      Returns:
      the pattern
    • getGuard

      ExpressionTree getGuard()
      The guard for the case.
      Returns:
      the guard