public class TryCatchMatching
extends java.lang.Object
| Constructor and Description |
|---|
TryCatchMatching() |
| Modifier and Type | Method and Description |
|---|---|
static @Nullable Throw |
matchThrow(@Nullable Instruction insn)
Matches a single
Throw instruction. |
static @Nullable TryCatch |
matchTryCatch(@Nullable Instruction insn)
Matches a single
TryCatch instruction. |
static @Nullable TryFinally |
matchTryFinally(@Nullable Instruction insn)
Matches a single
TryFinally instruction. |
@Nullable public static @Nullable TryCatch matchTryCatch(@Nullable @Nullable Instruction insn)
TryCatch instruction.insn - The instruction to match.TryCatch instruction or null.@Nullable public static @Nullable TryFinally matchTryFinally(@Nullable @Nullable Instruction insn)
TryFinally instruction.insn - The instruction to match.TryFinally instruction or null.@Nullable public static @Nullable Throw matchThrow(@Nullable @Nullable Instruction insn)
Throw instruction.insn - The instruction to match.Throw instruction or null.