blob: 59c7b806992b4fc5d76dbd16156d419f96d66612 (
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
|
public class EqualsAndHashCodeNewStyle {
int b;
double c;
int f;
int d;
int f() {
return 0;
}
int g;
long i() {
return 0;
}
int j;
@java.lang.Override
@java.lang.SuppressWarnings("all")
public boolean equals(final java.lang.Object o) {
if (o == this) return true;
if (!(o instanceof EqualsAndHashCodeNewStyle)) return false;
final EqualsAndHashCodeNewStyle other = (EqualsAndHashCodeNewStyle) o;
if (!other.canEqual((java.lang.Object) this)) return false;
if (this.b != other.b) return false;
if (java.lang.Double.compare(this.c, other.c) != 0) return false;
if (this.d != other.d) return false;
if (this.f() != other.f()) return false;
if (this.i() != other.i()) return false;
return true;
}
@java.lang.SuppressWarnings("all")
protected boolean canEqual(final java.lang.Object other) {
return other instanceof EqualsAndHashCodeNewStyle;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public int hashCode() {
final int PRIME = 59;
int result = 1;
result = result * PRIME + this.b;
final long $c = java.lang.Double.doubleToLongBits(this.c);
result = result * PRIME + (int) ($c >>> 32 ^ $c);
result = result * PRIME + this.d;
result = result * PRIME + this.f();
final long $$i = this.i();
result = result * PRIME + (int) ($$i >>> 32 ^ $$i);
return result;
}
}
|