3. Lombokって何?
http://projectlombok.org
created by
Javaの冗長性を排除する為
Roel Spilker
のライブラリ
「赤唐辛子」の意味
v0.10.4
MIT license
Reinier Zwitserloot
4. Javaの冗長性って?
こういうのとか
class Data {
private int value;
public int getValue() {
return value;
}
public void setValue(int value) {
this.value = value;
}
}
5. Javaの冗長性って?
後、こういうのとか…
InputStream in = new InputStream(args[0]);
try {
...
} finally {
If (in != null) in.close();
}