skip to content
developertype

snippets

filter:96 snippets
java-gen-equals·java·general
@Override
public boolean equals(Object o) {
    if (this == o) return true;
    if (!(o instanceof User other)) return false;
    return id == other.id && Objects.equals(email, other.email);
}

@Override
public int hashCode() {
    return Objects.hash(id, email);
}