- 
- すべてのスーパー・インタフェース:
- StatementTree,- Tree
 
 public interface AssertTree extends StatementTree assert文のツリー・ノード。 次に例を示します。assert condition ; assert condition : detail ; - 導入されたバージョン:
- 1.6
- Java™言語仕様:
- セクション14.10
 
- 
- 
メソッドのサマリー修飾子と型 メソッド 説明 ExpressionTreegetCondition()アサートされている条件を返します。ExpressionTreegetDetail()詳細表現を返します。
 
- 
- 
- 
メソッドの詳細- 
getConditionExpressionTree getCondition() アサートされている条件を返します。- 戻り値:
- 条件
 
 - 
getDetailExpressionTree getDetail() 詳細表現を返します。- 戻り値:
- 詳細表現
 
 
- 
 
-