[Java] Class TryCatchStatement
- org.codehaus.groovy.ast.stmt.TryCatchStatement
 
Represents a try { ... } catch () finally {} statement in Groovy
| Fields inherited from class | Fields | 
|---|---|
interface Statement |  CLOSE_CURRENT_RESULT, KEEP_CURRENT_RESULT, CLOSE_ALL_RESULTS, SUCCESS_NO_INFO, EXECUTE_FAILED, RETURN_GENERATED_KEYS, NO_GENERATED_KEYS |  
Properties Summary
| Type | Name and description | 
|---|---|
CatchStatement  |  
catchStatement |  
Statement  |  
finallyStatement |  
Statement  |  
tryStatement |  
Constructor Summary
| Constructor and description | 
|---|
 TryCatchStatement
                                (Statement tryStatement, Statement finallyStatement) |  
Methods Summary
| Type Params | Return Type | Name and description | 
|---|---|---|
void |  
addCatch(CatchStatement catchStatement) |  |
CatchStatement |  
getCatchStatement(int idx)@return the catch statement of the given index or null  |  |
List<CatchStatement> |  
getCatchStatements() |  |
Statement |  
getFinallyStatement() |  |
Statement |  
getTryStatement() |  |
void |  
setCatchStatement(int idx, CatchStatement catchStatement) |  |
void |  
setFinallyStatement(Statement finallyStatement) |  |
void |  
setTryStatement(Statement tryStatement) |  |
void |  
visit(GroovyCodeVisitor visitor) |  
Inherited Methods Summary
Property Detail
CatchStatement catchStatement
Statement finallyStatement
Statement tryStatement
Constructor Detail
public TryCatchStatement(Statement tryStatement, Statement finallyStatement)
Method Detail
public void addCatch(CatchStatement catchStatement)
public CatchStatement getCatchStatement(int idx)
- Returns:
 - the catch statement of the given index or null
 
public List<CatchStatement> getCatchStatements()
public Statement getFinallyStatement()
public Statement getTryStatement()
public void setCatchStatement(int idx, CatchStatement catchStatement)
public void setFinallyStatement(Statement finallyStatement)
public void setTryStatement(Statement tryStatement)
public void visit(GroovyCodeVisitor visitor)
    © 2003-2020 The Apache Software Foundation
Licensed under the Apache license.
    https://docs.groovy-lang.org/2.5.14/html/gapi/org/codehaus/groovy/ast/stmt/TryCatchStatement.html