blob: 85731b813b683b2685e7952dc59ad308d4267d55 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import lombok.experimental.UtilityClass;
@UtilityClass
public class UtilityClassExample {
private final int CONSTANT = 5;
public void addSomething(int in) {
return in + CONSTANT;
}
}
|