blob: eb7eef097b10bbbe23cfe39c8875cd2e25d350e1 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
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");
}
}
}
enum UtilityInsideEnum {
FOO,
BAR;
static final class InsideEnum {
static int member;
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
private InsideEnum() {
throw new java.lang.UnsupportedOperationException("This is a utility class and cannot be instantiated");
}
}
}
interface UtilityInsideInterface {
final class InsideInterface {
static int member;
@java.lang.SuppressWarnings("all")
@javax.annotation.Generated("lombok")
private InsideInterface() {
throw new java.lang.UnsupportedOperationException("This is a utility class and cannot be instantiated");
}
}
}
}
|