public final class TryStmt extends Statement
try {
// ...
} catch (IOException e) {
// ...
} finally {
// ...
}
In this code, "// do things" is the content of the tryBlock, there is one catch clause that catches IOException e,
and there is a finally block.
The catch and finally blocks are optional, but they should not be empty at the same time.
try (InputStream i = new FileInputStream("file")) {
// ...
} catch (IOException|NullPointerException e) {
// ...
} finally {
// ...
}
Java 7 introduced two things:
try (r) {
// ...
} catch (IOException|NullPointerException e) {
// ...
} finally {
// ...
}
Java 9 finishes resources: you can now refer to a resource that was declared somewhere else.
The following types are allowed:
CatchClause,
IntersectionType,
FieldAccessExpr,
NameExprNode.BreadthFirstIterator, Node.DirectChildrenIterator, Node.ObserverRegistrationMode, Node.ParentsVisitor, Node.Parsedness, Node.PostOrderIterator, Node.PreOrderIterator, Node.TreeTraversalABSOLUTE_BEGIN_LINE, ABSOLUTE_END_LINE, NODE_BY_BEGIN_POSITION, prettyPrinterNoCommentsConfiguration, SYMBOL_RESOLVER_KEY| Constructor and Description |
|---|
TryStmt() |
TryStmt(BlockStmt tryBlock,
NodeList<CatchClause> catchClauses,
BlockStmt finallyBlock) |
TryStmt(NodeList<Expression> resources,
BlockStmt tryBlock,
NodeList<CatchClause> catchClauses,
BlockStmt finallyBlock) |
TryStmt(TokenRange tokenRange,
NodeList<Expression> resources,
BlockStmt tryBlock,
NodeList<CatchClause> catchClauses,
BlockStmt finallyBlock)
This constructor is used by the parser and is considered private.
|
| Modifier and Type | Method and Description |
|---|---|
<R,A> R |
accept(GenericVisitor<R,A> v,
A arg)
Accept method for visitor support.
|
<A> void |
accept(VoidVisitor<A> v,
A arg)
Accept method for visitor support.
|
TryStmt |
asTryStmt() |
TryStmt |
clone() |
NodeList<CatchClause> |
getCatchClauses() |
Optional<BlockStmt> |
getFinallyBlock() |
TryStmtMetaModel |
getMetaModel() |
NodeList<Expression> |
getResources() |
BlockStmt |
getTryBlock() |
void |
ifTryStmt(Consumer<TryStmt> action) |
boolean |
isTryStmt() |
boolean |
remove(Node node) |
TryStmt |
removeFinallyBlock() |
TryStmt |
removeTryBlock() |
boolean |
replace(Node node,
Node replacementNode) |
TryStmt |
setCatchClauses(NodeList<CatchClause> catchClauses) |
TryStmt |
setFinallyBlock(BlockStmt finallyBlock) |
TryStmt |
setResources(NodeList<Expression> resources) |
TryStmt |
setTryBlock(BlockStmt tryBlock) |
Optional<TryStmt> |
toTryStmt() |
asAssertStmt, asBlockStmt, asBreakStmt, asContinueStmt, asDoStmt, asEmptyStmt, asExplicitConstructorInvocationStmt, asExpressionStmt, asForeachStmt, asForStmt, asIfStmt, asLabeledStmt, asLocalClassDeclarationStmt, asReturnStmt, asSwitchEntryStmt, asSwitchStmt, asSynchronizedStmt, asThrowStmt, asUnparsableStmt, asWhileStmt, ifAssertStmt, ifBlockStmt, ifBreakStmt, ifContinueStmt, ifDoStmt, ifEmptyStmt, ifExplicitConstructorInvocationStmt, ifExpressionStmt, ifForeachStmt, ifForStmt, ifIfStmt, ifLabeledStmt, ifLocalClassDeclarationStmt, ifReturnStmt, ifSwitchEntryStmt, ifSwitchStmt, ifSynchronizedStmt, ifThrowStmt, ifUnparsableStmt, ifWhileStmt, isAssertStmt, isBlockStmt, isBreakStmt, isContinueStmt, isDoStmt, isEmptyStmt, isExplicitConstructorInvocationStmt, isExpressionStmt, isForeachStmt, isForStmt, isIfStmt, isLabeledStmt, isLocalClassDeclarationStmt, isReturnStmt, isSwitchEntryStmt, isSwitchStmt, isSynchronizedStmt, isThrowStmt, isUnparsableStmt, isWhileStmt, toAssertStmt, toBlockStmt, toBreakStmt, toContinueStmt, toDoStmt, toEmptyStmt, toExplicitConstructorInvocationStmt, toExpressionStmt, toForeachStmt, toForStmt, toIfStmt, toLabeledStmt, toLocalClassDeclarationStmt, toReturnStmt, toSwitchEntryStmt, toSwitchStmt, toSynchronizedStmt, toThrowStmt, toUnparsableStmt, toWhileStmtaddOrphanComment, containsData, customInitialization, equals, findAll, findAll, findCompilationUnit, findFirst, findFirst, findFirst, findParent, findRootNode, getAllContainedComments, getChildNodes, getChildNodesByType, getComment, getData, getNodesByType, getOrphanComments, getParentNode, getParentNodeForChildren, getParsed, getRange, getSymbolResolver, getTokenRange, hasComment, hashCode, isRegistered, notifyPropertyChange, register, register, registerForSubtree, remove, removeComment, removeForced, removeOrphanComment, replace, setAsParentNodeOf, setAsParentNodeOf, setBlockComment, setComment, setData, setLineComment, setParentNode, setParsed, setRange, setTokenRange, stream, stream, toString, toString, tryAddImportToParentCompilationUnit, unregister, walk, walk, walkfinalize, getClass, notify, notifyAll, wait, wait, waitgetAncestorOfTypecontainsWithin, getBegin, getEnd, isPositionedAfter, isPositionedBeforepublic TryStmt()
public TryStmt(BlockStmt tryBlock, NodeList<CatchClause> catchClauses, BlockStmt finallyBlock)
public TryStmt(NodeList<Expression> resources, BlockStmt tryBlock, NodeList<CatchClause> catchClauses, BlockStmt finallyBlock)
@Generated(value="com.github.javaparser.generator.core.node.MainConstructorGenerator") public TryStmt(TokenRange tokenRange, NodeList<Expression> resources, BlockStmt tryBlock, NodeList<CatchClause> catchClauses, BlockStmt finallyBlock)
@Generated(value="com.github.javaparser.generator.core.node.AcceptGenerator") public <R,A> R accept(GenericVisitor<R,A> v, A arg)
VisitableR - the type of the return value of the visitorA - the type the user argument passed to the visitorv - the visitor implementationarg - the argument passed to the visitor (of type A)@Generated(value="com.github.javaparser.generator.core.node.AcceptGenerator") public <A> void accept(VoidVisitor<A> v, A arg)
VisitableA - the type the argument passed for the visitorv - the visitor implementationarg - any value relevant for the visitor (of type A)@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public NodeList<CatchClause> getCatchClauses()
@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public Optional<BlockStmt> getFinallyBlock()
@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public BlockStmt getTryBlock()
@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public NodeList<Expression> getResources()
@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public TryStmt setCatchClauses(NodeList<CatchClause> catchClauses)
@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public TryStmt setFinallyBlock(BlockStmt finallyBlock)
@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public TryStmt setTryBlock(BlockStmt tryBlock)
@Generated(value="com.github.javaparser.generator.core.node.PropertyGenerator") public TryStmt setResources(NodeList<Expression> resources)
@Generated(value="com.github.javaparser.generator.core.node.RemoveMethodGenerator") public boolean remove(Node node)
@Generated(value="com.github.javaparser.generator.core.node.RemoveMethodGenerator") public TryStmt removeFinallyBlock()
@Generated(value="com.github.javaparser.generator.core.node.RemoveMethodGenerator") public TryStmt removeTryBlock()
@Generated(value="com.github.javaparser.generator.core.node.CloneGenerator") public TryStmt clone()
@Generated(value="com.github.javaparser.generator.core.node.GetMetaModelGenerator") public TryStmtMetaModel getMetaModel()
getMetaModel in class Statement@Generated(value="com.github.javaparser.generator.core.node.ReplaceMethodGenerator") public boolean replace(Node node, Node replacementNode)
@Generated(value="com.github.javaparser.generator.core.node.TypeCastingGenerator") public boolean isTryStmt()
@Generated(value="com.github.javaparser.generator.core.node.TypeCastingGenerator") public TryStmt asTryStmt()
@Generated(value="com.github.javaparser.generator.core.node.TypeCastingGenerator") public void ifTryStmt(Consumer<TryStmt> action)
Copyright © 2007–2018. All rights reserved.