Uses of Class
com.strobel.expressions.CatchBlock
Packages that use CatchBlock
-
Uses of CatchBlock in com.strobel.expressions
Methods in com.strobel.expressions that return CatchBlockModifier and TypeMethodDescriptionstatic CatchBlockExpression.makeCatch(ParameterExpression variable, Expression body) static CatchBlockExpression.makeCatch(ParameterExpression variable, Expression body, Expression filter) static CatchBlockExpression.makeCatch(Type<?> type, Expression body) static CatchBlockExpression.makeCatch(Type<?> type, Expression body, Expression filter) static CatchBlockExpression.makeCatch(Type<?> type, ParameterExpression variable, Expression body) static CatchBlockExpression.makeCatch(Type<?> type, ParameterExpression variable, Expression body, Expression filter) final CatchBlockCatchBlock.update(ParameterExpression variable, Expression filter, Expression body) protected CatchBlockExpressionVisitor.visitCatchBlock(CatchBlock node) Methods in com.strobel.expressions that return types with arguments of type CatchBlockMethods in com.strobel.expressions with parameters of type CatchBlockModifier and TypeMethodDescriptionstatic TryExpressionExpression.makeTry(Type<?> type, Expression body, CatchBlock... handlers) static TryExpressionExpression.makeTry(Type<?> type, Expression body, Expression finallyBlock, CatchBlock... handlers) static TryExpressionExpression.tryCatch(Expression body, CatchBlock... handlers) static TryExpressionExpression.tryCatchFinally(Expression body, Expression finallyBlock, CatchBlock... handlers) protected CatchBlockExpressionVisitor.visitCatchBlock(CatchBlock node) Method parameters in com.strobel.expressions with type arguments of type CatchBlockModifier and TypeMethodDescriptionstatic TryExpressionExpression.makeTry(Type<?> type, Expression body, ReadOnlyList<CatchBlock> catchBlocks, Expression finallyBlock) final TryExpressionTryExpression.update(Expression body, ReadOnlyList<CatchBlock> handlers, Expression finallyBlock)