mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-26 07:58:54 +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;
|
|
}
|
|
}
|