blob: 4d6e70794e2d9bff7f28f029b28917571fd25ac7 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
import lombok.NoArgsConstructor;
import lombok.Value;
import lombok.Builder;
final @Builder @Value class ConstructorsWithBuilderDefaults<T> {
public static @java.lang.SuppressWarnings("all") class ConstructorsWithBuilderDefaultsBuilder<T> {
private @java.lang.SuppressWarnings("all") java.util.List<T> z$value;
private @java.lang.SuppressWarnings("all") boolean z$set;
private @java.lang.SuppressWarnings("all") T x$value;
private @java.lang.SuppressWarnings("all") boolean x$set;
private @java.lang.SuppressWarnings("all") T q;
@java.lang.SuppressWarnings("all") ConstructorsWithBuilderDefaultsBuilder() {
super();
}
/**
* @return {@code this}.
*/
public @java.lang.SuppressWarnings("all") ConstructorsWithBuilderDefaults.ConstructorsWithBuilderDefaultsBuilder<T> z(final java.util.List<T> z) {
this.z$value = z;
z$set = true;
return this;
}
/**
* @return {@code this}.
*/
public @java.lang.SuppressWarnings("all") ConstructorsWithBuilderDefaults.ConstructorsWithBuilderDefaultsBuilder<T> x(final T x) {
this.x$value = x;
x$set = true;
return this;
}
/**
* @return {@code this}.
*/
public @java.lang.SuppressWarnings("all") ConstructorsWithBuilderDefaults.ConstructorsWithBuilderDefaultsBuilder<T> q(final T q) {
this.q = q;
return this;
}
public @java.lang.SuppressWarnings("all") ConstructorsWithBuilderDefaults<T> build() {
java.util.List<T> z$value = this.z$value;
if ((! this.z$set))
z$value = ConstructorsWithBuilderDefaults.<T>$default$z();
T x$value = this.x$value;
if ((! this.x$set))
x$value = ConstructorsWithBuilderDefaults.<T>$default$x();
return new ConstructorsWithBuilderDefaults<T>(z$value, x$value, this.q);
}
public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() {
return (((((("ConstructorsWithBuilderDefaults.ConstructorsWithBuilderDefaultsBuilder(z$value=" + this.z$value) + ", x$value=") + this.x$value) + ", q=") + this.q) + ")");
}
}
private final @Builder.Default java.util.List<T> z;
private final @Builder.Default T x;
private final T q;
private static @java.lang.SuppressWarnings("all") <T>java.util.List<T> $default$z() {
return new java.util.ArrayList<T>();
}
private static @java.lang.SuppressWarnings("all") <T>T $default$x() {
return null;
}
@java.lang.SuppressWarnings("all") ConstructorsWithBuilderDefaults(final java.util.List<T> z, final T x, final T q) {
super();
this.z = z;
this.x = x;
this.q = q;
}
public static @java.lang.SuppressWarnings("all") <T>ConstructorsWithBuilderDefaults.ConstructorsWithBuilderDefaultsBuilder<T> builder() {
return new ConstructorsWithBuilderDefaults.ConstructorsWithBuilderDefaultsBuilder<T>();
}
public @java.lang.SuppressWarnings("all") java.util.List<T> getZ() {
return this.z;
}
public @java.lang.SuppressWarnings("all") T getX() {
return this.x;
}
public @java.lang.SuppressWarnings("all") T getQ() {
return this.q;
}
public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) {
if ((o == this))
return true;
if ((! (o instanceof ConstructorsWithBuilderDefaults)))
return false;
final ConstructorsWithBuilderDefaults<?> other = (ConstructorsWithBuilderDefaults<?>) o;
final java.lang.Object this$z = this.getZ();
final java.lang.Object other$z = other.getZ();
if (((this$z == null) ? (other$z != null) : (! this$z.equals(other$z))))
return false;
final java.lang.Object this$x = this.getX();
final java.lang.Object other$x = other.getX();
if (((this$x == null) ? (other$x != null) : (! this$x.equals(other$x))))
return false;
final java.lang.Object this$q = this.getQ();
final java.lang.Object other$q = other.getQ();
if (((this$q == null) ? (other$q != null) : (! this$q.equals(other$q))))
return false;
return true;
}
public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() {
final int PRIME = 59;
int result = 1;
final java.lang.Object $z = this.getZ();
result = ((result * PRIME) + (($z == null) ? 43 : $z.hashCode()));
final java.lang.Object $x = this.getX();
result = ((result * PRIME) + (($x == null) ? 43 : $x.hashCode()));
final java.lang.Object $q = this.getQ();
result = ((result * PRIME) + (($q == null) ? 43 : $q.hashCode()));
return result;
}
public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() {
return (((((("ConstructorsWithBuilderDefaults(z=" + this.getZ()) + ", x=") + this.getX()) + ", q=") + this.getQ()) + ")");
}
private @java.lang.SuppressWarnings("all") ConstructorsWithBuilderDefaults() {
super();
this.q = null;
this.z = ConstructorsWithBuilderDefaults.$default$z();
this.x = ConstructorsWithBuilderDefaults.$default$x();
}
}
|