BrightSide Workbench Full Report + Source Code
org.turro.matching.MatchingEntityPK Class Reference
Inheritance diagram for org.turro.matching.MatchingEntityPK:
Collaboration diagram for org.turro.matching.MatchingEntityPK:

Public Member Functions

String getEntityPath ()
 
void setEntityPath (String entityPath)
 
String getRelatedPath ()
 
void setRelatedPath (String relatedPath)
 
String getConcept ()
 
void setConcept (String concept)
 
int hashCode ()
 
boolean equals (Object obj)
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 28 of file MatchingEntityPK.java.

Member Function Documentation

◆ equals()

boolean org.turro.matching.MatchingEntityPK.equals ( Object  obj)

Definition at line 68 of file MatchingEntityPK.java.

68  {
69  if (this == obj) {
70  return true;
71  }
72  if (obj == null) {
73  return false;
74  }
75  if (getClass() != obj.getClass()) {
76  return false;
77  }
78  final MatchingEntityPK other = (MatchingEntityPK) obj;
79  if (!Objects.equals(this.entityPath, other.entityPath)) {
80  return false;
81  }
82  if (!Objects.equals(this.relatedPath, other.relatedPath)) {
83  return false;
84  }
85  if (!Objects.equals(this.concept, other.concept)) {
86  return false;
87  }
88  return true;
89  }

◆ getConcept()

String org.turro.matching.MatchingEntityPK.getConcept ( )

Definition at line 50 of file MatchingEntityPK.java.

50  {
51  return concept;
52  }

◆ getEntityPath()

String org.turro.matching.MatchingEntityPK.getEntityPath ( )

Definition at line 34 of file MatchingEntityPK.java.

34  {
35  return entityPath;
36  }

◆ getRelatedPath()

String org.turro.matching.MatchingEntityPK.getRelatedPath ( )

Definition at line 42 of file MatchingEntityPK.java.

42  {
43  return relatedPath;
44  }

◆ hashCode()

int org.turro.matching.MatchingEntityPK.hashCode ( )

Definition at line 59 of file MatchingEntityPK.java.

59  {
60  int hash = 3;
61  hash = 59 * hash + Objects.hashCode(this.entityPath);
62  hash = 59 * hash + Objects.hashCode(this.relatedPath);
63  hash = 59 * hash + Objects.hashCode(this.concept);
64  return hash;
65  }

◆ setConcept()

void org.turro.matching.MatchingEntityPK.setConcept ( String  concept)

Definition at line 54 of file MatchingEntityPK.java.

54  {
55  this.concept = concept;
56  }

◆ setEntityPath()

void org.turro.matching.MatchingEntityPK.setEntityPath ( String  entityPath)

Definition at line 38 of file MatchingEntityPK.java.

38  {
39  this.entityPath = entityPath;
40  }

◆ setRelatedPath()

void org.turro.matching.MatchingEntityPK.setRelatedPath ( String  relatedPath)

Definition at line 46 of file MatchingEntityPK.java.

46  {
47  this.relatedPath = relatedPath;
48  }

The documentation for this class was generated from the following file: