- 
- All Superinterfaces:
- StatementTree,- Tree
 
 public interface AssertTree extends StatementTree A tree node for anassertstatement. For example:assert condition ; assert condition : detail ; - Since:
- 1.6
- See The Java™ Language Specification:
- section 14.10
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ExpressionTreegetCondition()Returns the condition being asserted.ExpressionTreegetDetail()Returns the detail expression.
 
- 
- 
- 
Method Detail- 
getConditionExpressionTree getCondition() Returns the condition being asserted.- Returns:
- the condition
 
 - 
getDetailExpressionTree getDetail() Returns the detail expression.- Returns:
- the detail expression
 
 
- 
 
-