mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 08:00:03 +00:00
11 lines
189 B
Plaintext
11 lines
189 B
Plaintext
import lombok.experimental.UtilityClass;
|
|
|
|
@UtilityClass
|
|
public class UtilityClassExample {
|
|
private final int CONSTANT = 5;
|
|
|
|
public int addSomething(int in) {
|
|
return in + CONSTANT;
|
|
}
|
|
}
|