Change static field access to static method access
Recipe ID
org.openrewrite.java.ChangeStaticFieldToMethodArtifact
org.openrewrite:rewrite-javaMigrate accesses to a static field to invocations of a static method.
Usage
You’ll need the Moderne CLI configured before running the command below.
mod run . --recipe org.openrewrite.java.ChangeStaticFieldToMethod --recipe-option "oldClassName=java.util.Collections" --recipe-option "oldFieldName=EMPTY_LIST" --recipe-option "newMethodName=of"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 |
|---|---|---|
oldClassNamerequired | String | The fully qualified name of the class containing the field to replace. e.g. java.util.Collections |
oldFieldNamerequired | String | The simple name of the static field to replace. e.g. EMPTY_LIST |
newClassName | String | The fully qualified name of the class containing the method to use. Leave empty to keep the same class. e.g. java.util.List |
newTarget | String | An optional method target that can be used to specify a static field within the new class. e.g. OK_RESPONSE |
newMethodNamerequired | String | The simple name of the method to use. The method must be static and have no arguments. e.g. of |
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