mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-26 13:59:47 +00:00
12 lines
298 B
Plaintext
12 lines
298 B
Plaintext
public final class UtilityClassExample {
|
|
private static final int CONSTANT = 5;
|
|
|
|
private UtilityClassExample() {
|
|
throw new java.lang.UnsupportedOperationException("This is a utility class and cannot be instantiated");
|
|
}
|
|
|
|
public static void addSomething(int in) {
|
|
return in + CONSTANT;
|
|
}
|
|
}
|