mirror of
https://github.com/tiennm99/lombok.git
synced 2026-08-01 16:21:17 +00:00
49 lines
1.8 KiB
Java
49 lines
1.8 KiB
Java
@lombok.EqualsAndHashCode class EqualsAndHashCodeConfigKeys1Parent {
|
|
EqualsAndHashCodeConfigKeys1Parent() {
|
|
super();
|
|
}
|
|
public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) {
|
|
if ((o == this))
|
|
return true;
|
|
if ((! (o instanceof EqualsAndHashCodeConfigKeys1Parent)))
|
|
return false;
|
|
final EqualsAndHashCodeConfigKeys1Parent other = (EqualsAndHashCodeConfigKeys1Parent) o;
|
|
if ((! other.canEqual((java.lang.Object) this)))
|
|
return false;
|
|
return true;
|
|
}
|
|
protected @java.lang.SuppressWarnings("all") boolean canEqual(final java.lang.Object other) {
|
|
return (other instanceof EqualsAndHashCodeConfigKeys1Parent);
|
|
}
|
|
public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() {
|
|
int result = 1;
|
|
return result;
|
|
}
|
|
}
|
|
@lombok.EqualsAndHashCode class EqualsAndHashCodeConfigKeys1 extends EqualsAndHashCodeConfigKeys1Parent {
|
|
int x;
|
|
EqualsAndHashCodeConfigKeys1() {
|
|
super();
|
|
}
|
|
public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) {
|
|
if ((o == this))
|
|
return true;
|
|
if ((! (o instanceof EqualsAndHashCodeConfigKeys1)))
|
|
return false;
|
|
final EqualsAndHashCodeConfigKeys1 other = (EqualsAndHashCodeConfigKeys1) 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 EqualsAndHashCodeConfigKeys1);
|
|
}
|
|
public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() {
|
|
final int PRIME = 59;
|
|
int result = 1;
|
|
result = ((result * PRIME) + this.x);
|
|
return result;
|
|
}
|
|
} |