为具有前缀 "has" 的布尔成员编辑 lombok getter 方法名称

Edit lombok getter method name for boolean member having prefix "has"

我在 lombok 中有一个布尔变量 hasObject,它生成 isHasObject()。我正在使用 @Data lombok 注释。我怎样才能将方法更改为 hasObject()

我从 lombok-how-to-customise-getter-for-boolean-object-field 那里找到了帮助。 通过这个,我将拥有改变访问器级别和代码 getter 旧时尚,

@Getter(AccessLevel.NONE) private boolean hasObject;

public boolean hasObject() {
    return hasObject;
}

我会保持这个问题的开放性。这是更改 getter 方法名称的唯一方法,还是我会等待更好的建议。

你的情况可能是:

 class XY : Object {
      @Getter(fluent = true)
      public boolean hasObject;
 }

 @Accessors(fluent = true)
 class XY : Object {
      public boolean hasObject;
 }

根据文档:

fluent - A boolean. If true, the getter for pepper is just pepper(), and the setter is pepper(T newValue). Furthermore, unless specified, chain defaults to true. Default: false.

结合Accessors and Getter,你可能会得到以下结果:

 class ExampleClass {
      @Accessors(fluent = true)
      @Getter
      private boolean hasObject;
 }

相当于原版 Java:

class ExampleClass {
    
    private boolean hasObject;

    public hasObject() {
        return hasObject;
    }

我想这就是你想要的。

就像这样:

 @Data
 class ExampleClass {
     
      private Object data;

      @Accessors(fluent = true)
      private boolean hasObject;
 }

这将提供 getData()hasObject() 方法。