blob: e1bdc7f7d310cfc5b487fa1b789912da5232e5a0 (
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
|
import lombok.*;
import static lombok.AccessLevel.NONE;
class EqualsAndHashCodeWithSomeExistingMethods {
int x;
public int hashCode() {
return 42;
}
@java.lang.SuppressWarnings("all")
public EqualsAndHashCodeWithSomeExistingMethods() {
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public java.lang.String toString() {
return "EqualsAndHashCodeWithSomeExistingMethods(x=" + this.x + ")";
}
}
class EqualsAndHashCodeWithSomeExistingMethods2 {
int x;
public boolean canEqual(Object other) {
return false;
}
@java.lang.SuppressWarnings("all")
public EqualsAndHashCodeWithSomeExistingMethods2() {
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public java.lang.String toString() {
return "EqualsAndHashCodeWithSomeExistingMethods2(x=" + this.x + ")";
}
}
class EqualsAndHashCodeWithAllExistingMethods {
int x;
public int hashCode() {
return 42;
}
public boolean equals(Object other) {
return false;
}
@java.lang.SuppressWarnings("all")
public EqualsAndHashCodeWithAllExistingMethods() {
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public java.lang.String toString() {
return "EqualsAndHashCodeWithAllExistingMethods(x=" + this.x + ")";
}
}
class EqualsAndHashCodeWithNoExistingMethods {
int x;
@java.lang.SuppressWarnings("all")
public EqualsAndHashCodeWithNoExistingMethods() {
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public boolean equals(final java.lang.Object o) {
if (o == this) return true;
if (!(o instanceof EqualsAndHashCodeWithNoExistingMethods)) return false;
final EqualsAndHashCodeWithNoExistingMethods other = (EqualsAndHashCodeWithNoExistingMethods)o;
if (!other.canEqual((java.lang.Object)this)) return false;
if (this.x != other.x) return false;
return true;
}
@java.lang.SuppressWarnings("all")
public boolean canEqual(final java.lang.Object other) {
return other instanceof EqualsAndHashCodeWithNoExistingMethods;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public int hashCode() {
final int PRIME = 277;
int result = 1;
result = result * PRIME + this.x;
return result;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public java.lang.String toString() {
return "EqualsAndHashCodeWithNoExistingMethods(x=" + this.x + ")";
}
}
|