blob: f9fe02a0d5d89118a3b2400aa4b16306350bb6aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
final class UtilityClass {
private static String someField;
static void someMethod() {
System.out.println();
}
protected static class InnerClass {
private String innerInnerMember;
}
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
private UtilityClass() {
throw new java.lang.UnsupportedOperationException("This is a utility class and cannot be instantiated");
}
}
class UtilityInner {
static class InnerInner {
static final class InnerInnerInner {
static int member;
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
private InnerInnerInner() {
throw new java.lang.UnsupportedOperationException("This is a utility class and cannot be instantiated");
}
}
}
}
|