Reorder method arguments
Recipe ID
org.openrewrite.java.ReorderMethodArgumentsArtifact
org.openrewrite:rewrite-javaReorder method arguments into the specified order.
Usage
You’ll need the Moderne CLI configured before running the command below.
mod run . --recipe org.openrewrite.java.ReorderMethodArguments --recipe-option "methodPattern=com.yourorg.A foo(String, Integer, Integer)" --recipe-option "newParameterNames=[foo, bar, baz]"If the recipe isn’t available locally, install it with:
mod config recipes jar install org.openrewrite:rewrite-java:8.88.0Options
| Name | Type | Description |
|---|---|---|
methodPatternrequired | String | A method pattern is used to find matching method invocations. For example, to find all method invocations in the Guava library, use the pattern: com.google.common..*#*(..).The pattern format is <PACKAGE>#<METHOD_NAME>(<ARGS>). ..* includes all subpackages of com.google.common. *(..) matches any method name with any number of arguments. For more specific queries, like Guava's ImmutableMap, use com.google.common.collect.ImmutableMap#*(..) to narrow down the results.e.g. com.yourorg.A foo(String, Integer, Integer) |
newParameterNamesrequired | String[] | An array of parameter names that indicates the new order in which those arguments should be arranged. e.g. [foo, bar, baz] |
oldParameterNames | String[] | If the original method signature is not type-attributed, this is an optional list that indicates the original order in which the arguments were arranged. e.g. [baz, bar, foo] |
ignoreDefinition | Boolean | When set to true the definition of the old type will be left untouched. This is useful when you're replacing usage of a class but don't want to rename it. |
matchOverrides | Boolean | When enabled, find methods that are overrides of the method pattern. |
Data tables
Structured output this recipe can produce.
- 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