blob: 7e6e171b5e0c0f1443f2f9a35a201e0f87a54f2f (
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
|
@lombok.EqualsAndHashCode class EqualsAndHashCodeAutoExclude {
int x;
String $a;
transient String b;
EqualsAndHashCodeAutoExclude() {
super();
}
public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) {
if ((o == this))
return true;
if ((! (o instanceof EqualsAndHashCodeAutoExclude)))
return false;
final EqualsAndHashCodeAutoExclude other = (EqualsAndHashCodeAutoExclude) o;
if ((! other.canEqual((java.lang.Object) this)))
return false;
if ((this.x != other.x))
return false;
return true;
}
protected @java.lang.SuppressWarnings("all") boolean canEqual(final java.lang.Object other) {
return (other instanceof EqualsAndHashCodeAutoExclude);
}
public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() {
final int PRIME = 59;
int result = 1;
result = ((result * PRIME) + this.x);
return result;
}
}
@lombok.EqualsAndHashCode class EqualsAndHashCodeAutoExclude2 {
int x;
@lombok.EqualsAndHashCode.Include String $a;
transient @lombok.EqualsAndHashCode.Include String b;
EqualsAndHashCodeAutoExclude2() {
super();
}
public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) {
if ((o == this))
return true;
if ((! (o instanceof EqualsAndHashCodeAutoExclude2)))
return false;
final EqualsAndHashCodeAutoExclude2 other = (EqualsAndHashCodeAutoExclude2) o;
if ((! other.canEqual((java.lang.Object) this)))
return false;
if ((this.x != other.x))
return false;
final java.lang.Object this$$a = this.$a;
final java.lang.Object other$$a = other.$a;
if (((this$$a == null) ? (other$$a != null) : (! this$$a.equals(other$$a))))
return false;
final java.lang.Object this$b = this.b;
final java.lang.Object other$b = other.b;
if (((this$b == null) ? (other$b != null) : (! this$b.equals(other$b))))
return false;
return true;
}
protected @java.lang.SuppressWarnings("all") boolean canEqual(final java.lang.Object other) {
return (other instanceof EqualsAndHashCodeAutoExclude2);
}
public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() {
final int PRIME = 59;
int result = 1;
result = ((result * PRIME) + this.x);
final java.lang.Object $$a = this.$a;
result = ((result * PRIME) + (($$a == null) ? 43 : $$a.hashCode()));
final java.lang.Object $b = this.b;
result = ((result * PRIME) + (($b == null) ? 43 : $b.hashCode()));
return result;
}
}
|