Module jdk.compiler

Interface AssertTree

  • All Superinterfaces:
    StatementTree, Tree

    public interface AssertTree
    extends StatementTree
    A tree node for an assert statement. For example:
       assert condition ;
    
       assert condition : detail ;
     
    Since:
    1.6
    See The Java™ Language Specification:
    section 14.10
    • Method Detail

      • getCondition

        ExpressionTree getCondition()
        Returns the condition being asserted.
        Returns:
        the condition
      • getDetail

        ExpressionTree getDetail()
        Returns the detail expression.
        Returns:
        the detail expression