blob: c3e06fbc5d6aa72e84c7f6226c6c568c43ffb6ff (
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
27
28
29
30
31
32
33
|
final @lombok.experimental.UtilityClass class UtilityClass {
protected static class InnerClass {
private String innerInnerMember;
protected InnerClass() {
super();
}
}
private static String someField;
static void someMethod() {
System.out.println();
}
private @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") UtilityClass() {
super();
throw new java.lang.UnsupportedOperationException("This is a utility class and cannot be instantiated");
}
}
class UtilityInner {
static class InnerInner {
static final @lombok.experimental.UtilityClass class InnerInnerInner {
static int member;
private @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") InnerInnerInner() {
super();
throw new java.lang.UnsupportedOperationException("This is a utility class and cannot be instantiated");
}
}
InnerInner() {
super();
}
}
UtilityInner() {
super();
}
}
|