19 package org.turro.matching;
21 import java.io.Serializable;
22 import java.util.Objects;
30 private String entityPath;
31 private String relatedPath;
32 private String concept;
39 this.entityPath = entityPath;
47 this.relatedPath = relatedPath;
55 this.concept = concept;
61 hash = 59 * hash + Objects.hashCode(this.entityPath);
62 hash = 59 * hash + Objects.hashCode(this.relatedPath);
63 hash = 59 * hash + Objects.hashCode(this.concept);
75 if (getClass() != obj.getClass()) {
79 if (!Objects.equals(
this.entityPath, other.entityPath)) {
82 if (!Objects.equals(
this.relatedPath, other.relatedPath)) {
85 if (!Objects.equals(
this.concept, other.concept)) {
void setConcept(String concept)
void setRelatedPath(String relatedPath)
void setEntityPath(String entityPath)
boolean equals(Object obj)