admin管理员组

文章数量:1405392

Consider the following class:

@Data
@Accessors(fluent = true)
@NoArgsConstructor
public class Example {
  private String property;
}

public class Test {
  public static void main(String[] args) {
    Example e = new Example();
    e.property("value");
  }
}

Is it possible, in intellij, to refactor the fluent accessors so it switches all usages to traditional getters and setters?

本文标签: javaIs it possible to refactor fluent accessors in IntelliJStack Overflow