lombok表达式中@Accessors注解
该注解用于配置lombok生成getter和setter方法的规则,总共有三个可配置的属性:
fluent
设置为true
时,则getter
和setter
方法的方法名是基础属性名,且setter
方法返回当前对象。默认值为false
。此时,除非手动指定,否则chain
默认为true
。
@Accessors(fluent = true)
public class AccessorsExample {
@Getter @Setter
private int age = 10;
}
/***等价于下面的代码****/
public class AccessorsExample {
private int age = 10;
public int age() {
return this.age;
}
public AccessorsExample age(final int age) {
this.age = age;
return this;
}
}
chain
一个boolean
类型的参数,如果设置为true
,则setter
方法返回这个对象。默认值为:false
,但是当fluent=true
时,默认值为true
。
public class ChainExample {
private int age;
// 返回当前对象
public ChainExample setAge(int age) {
this.age = age;
return this;
}
}
prefix
一个String
类型的参数,如果这个参数存在,则属性必须使用这个参数的值作为前缀。系统在创建getter
和setter
方法的时候会删除前缀。 注意:前缀后面的字符不能为小写字母。
class PrefixExample {
@Accessors(prefix = "f") @Getter
private String fName = "Hello, World!";
}
/***等价于下面的代码****/
class PrefixExample {
private String fName = "Hello, World!";
public String getName() {
return this.fName;
}
}
官网文档 projectlombok.org/features/ex…