Find method usages
Recipe ID
org.openrewrite.analysis.search.FindMethodsArtifact
org.openrewrite.meta:rewrite-analysisFind method usages by pattern.
Usage
You’ll need the Moderne CLI configured before running the command below.
mod run . --recipe org.openrewrite.analysis.search.FindMethods --recipe-option "methodPattern=java.util.List add(..)"If the recipe isn’t available locally, install it with:
mod config recipes jar install org.openrewrite.meta:rewrite-analysis:2.37.0Options
| Name | Type | Description |
|---|---|---|
methodPatternrequired | String | A method pattern that is used to find matching method invocations. e.g. java.util.List add(..) |
matchOverrides | Boolean | When enabled, find methods that are overrides of the method pattern. |
flow | String | When enabled, show the data or taint flow of the method invocation. |
Data tables
Structured output this recipe can produce.
- Method callsThe text of matching method invocations.
org.openrewrite.java.table.MethodCalls - Source files that had resultsSource files that were modified by the recipe run.
org.openrewrite.table.SourcesFileResults - Source files that had search resultsSearch results that were found during the recipe run.
org.openrewrite.table.SearchResults - Source files that errored on a recipeThe details of all errors produced by a recipe run.
org.openrewrite.table.SourcesFileErrors - Recipe performanceStatistics used in analyzing the performance of recipes.
org.openrewrite.table.RecipeRunStats