blob: d5ac9bad25c9309a5dfa18f61da930b2b872f17e (
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
|
final class ConstructorsWithBuilderDefaults {
private final int x;
private final int y;
@java.lang.SuppressWarnings("all")
private static int $default$x() {
return 5;
}
@java.lang.SuppressWarnings("all")
public static class ConstructorsWithBuilderDefaultsBuilder {
@java.lang.SuppressWarnings("all")
private boolean x$set;
@java.lang.SuppressWarnings("all")
private int x$value;
@java.lang.SuppressWarnings("all")
private int y;
@java.lang.SuppressWarnings("all")
ConstructorsWithBuilderDefaultsBuilder() {
}
@java.lang.SuppressWarnings("all")
public ConstructorsWithBuilderDefaults.ConstructorsWithBuilderDefaultsBuilder x(final int x) {
this.x$value = x;
x$set = true;
return this;
}
@java.lang.SuppressWarnings("all")
public ConstructorsWithBuilderDefaults.ConstructorsWithBuilderDefaultsBuilder y(final int y) {
this.y = y;
return this;
}
@java.lang.SuppressWarnings("all")
public ConstructorsWithBuilderDefaults build() {
int x$value = this.x$value;
if (!this.x$set) x$value = ConstructorsWithBuilderDefaults.$default$x();
return new ConstructorsWithBuilderDefaults(x$value, this.y);
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public java.lang.String toString() {
return "ConstructorsWithBuilderDefaults.ConstructorsWithBuilderDefaultsBuilder(x$value=" + this.x$value + ", y=" + this.y + ")";
}
}
@java.lang.SuppressWarnings("all")
public static ConstructorsWithBuilderDefaults.ConstructorsWithBuilderDefaultsBuilder builder() {
return new ConstructorsWithBuilderDefaults.ConstructorsWithBuilderDefaultsBuilder();
}
@java.lang.SuppressWarnings("all")
public int getX() {
return this.x;
}
@java.lang.SuppressWarnings("all")
public int getY() {
return this.y;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public boolean equals(final java.lang.Object o) {
if (o == this) return true;
if (!(o instanceof ConstructorsWithBuilderDefaults)) return false;
final ConstructorsWithBuilderDefaults other = (ConstructorsWithBuilderDefaults) o;
if (this.getX() != other.getX()) return false;
if (this.getY() != other.getY()) return false;
return true;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public int hashCode() {
final int PRIME = 59;
int result = 1;
result = result * PRIME + this.getX();
result = result * PRIME + this.getY();
return result;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public java.lang.String toString() {
return "ConstructorsWithBuilderDefaults(x=" + this.getX() + ", y=" + this.getY() + ")";
}
@java.lang.SuppressWarnings("all")
public ConstructorsWithBuilderDefaults() {
this.y = 0;
this.x = ConstructorsWithBuilderDefaults.$default$x();
}
@java.lang.SuppressWarnings("all")
public ConstructorsWithBuilderDefaults(final int x, final int y) {
this.x = x;
this.y = y;
}
}
|