编辑具有前缀“has”的布尔成员的龙目岛 getter 方法名称

2022-09-01 11:37:53

我在龙目岛中有一个布尔变量,它生成.我正在使用龙目岛注释。如何将方法更改为hasObjectisHasObject()@DatahasObject()


答案 1

在您的情况下,它可能是:

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

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

根据文档:

流利 - 布尔值。如果为 true,则 pepper 的 getter 只是 pepper(),而 setter 是 pepper(T newValue)。此外,除非指定,否则链默认为 true。默认值:假。


答案 2

我从龙目岛如何自定义布尔对象字段中找到了帮助。通过这种方式,我将具有更改访问器级别和代码获取器旧时尚,

@Getter(AccessLevel.NONE) private boolean hasObject;

public boolean hasObject() {
    return hasObject;
}

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


推荐