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