in google-cloud-spanner-hibernate-dialect/src/main/java/com/google/cloud/spanner/hibernate/reflection/SpannerEntityFieldKey.java [51:62]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SpannerEntityFieldKey other = (SpannerEntityFieldKey) o;
return Objects.equals(declaringClass, other.declaringClass)
&& Objects.equals(type, other.type)
&& Objects.equals(name, other.name);
}