19 package org.turro.matching;
21 import java.io.Serializable;
22 import java.util.Objects;
30 private String entityPath;
31 private String siblingPath;
38 this.entityPath = entityPath;
46 this.siblingPath = siblingPath;
52 hash = 47 * hash + Objects.hashCode(this.entityPath);
53 hash = 47 * hash + Objects.hashCode(this.siblingPath);
65 if (getClass() != obj.getClass()) {
69 if (!Objects.equals(
this.entityPath, other.entityPath)) {
72 if (!Objects.equals(
this.siblingPath, other.siblingPath)) {
void setEntityPath(String entityPath)
boolean equals(Object obj)
void setSiblingPath(String siblingPath)