Interface TryTree
- All Superinterfaces:
-
StatementTree
,Tree
public interface TryTree extends StatementTree
A tree node for a try
statement. For example:
try block catches finally finallyBlock
- Since:
- 1.6
Nested Classes
Nested classes/interfaces declared in interface com.sun.source.tree.Tree
Tree.Kind
Methods
Modifier and Type | Method | Description |
---|---|---|
BlockTree | getBlock() | Returns the block of the |
List<? extends CatchTree> | getCatches() | Returns any catch blocks provided in the |
BlockTree | getFinallyBlock() | Returns the finally block provided in the |
List<? extends Tree> | getResources() | Returns any resource declarations provided in the |
Methods declared in interface com.sun.source.tree.Tree
accept, getKind
Methods
getBlock
BlockTree getBlock()
Returns the block of the try
statement.
- Returns:
- the block
getCatches
List<? extends CatchTree> getCatches()
Returns any catch blocks provided in the try
statement. The result will be an empty list if there are no catch blocks.
- Returns:
- the catch blocks
getFinallyBlock
BlockTree getFinallyBlock()
Returns the finally block provided in the try
statement, or null
if there is none.
- Returns:
- the finally block
getResources
List<? extends Tree> getResources()
Returns any resource declarations provided in the try
statement. The result will be an empty list if there are no resource declarations.
- Returns:
- the resource declarations
© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/11/docs/api/jdk.compiler/com/sun/source/tree/TryTree.html