BrightSide Workbench Full Report + Source Code
All Classes Namespaces Files Functions Variables Pages
org.turro.ranking.RankingEntityPK Class Reference
Inheritance diagram for org.turro.ranking.RankingEntityPK:
Collaboration diagram for org.turro.ranking.RankingEntityPK:

Public Member Functions

String getEntityPath ()
 
void setEntityPath (String entityPath)
 
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 RankingEntityPK.java.

Member Function Documentation

◆ equals()

boolean org.turro.ranking.RankingEntityPK.equals ( Object  obj)

Definition at line 58 of file RankingEntityPK.java.

58  {
59  if (this == obj) {
60  return true;
61  }
62  if (obj == null) {
63  return false;
64  }
65  if (getClass() != obj.getClass()) {
66  return false;
67  }
68  final RankingEntityPK other = (RankingEntityPK) obj;
69  if (!Objects.equals(this.entityPath, other.entityPath)) {
70  return false;
71  }
72  if (!Objects.equals(this.concept, other.concept)) {
73  return false;
74  }
75  return true;
76  }

◆ getConcept()

String org.turro.ranking.RankingEntityPK.getConcept ( )

Definition at line 41 of file RankingEntityPK.java.

41  {
42  return concept;
43  }

◆ getEntityPath()

String org.turro.ranking.RankingEntityPK.getEntityPath ( )

Definition at line 33 of file RankingEntityPK.java.

33  {
34  return entityPath;
35  }

◆ hashCode()

int org.turro.ranking.RankingEntityPK.hashCode ( )

Definition at line 50 of file RankingEntityPK.java.

50  {
51  int hash = 7;
52  hash = 59 * hash + Objects.hashCode(this.entityPath);
53  hash = 59 * hash + Objects.hashCode(this.concept);
54  return hash;
55  }

◆ setConcept()

void org.turro.ranking.RankingEntityPK.setConcept ( String  concept)

Definition at line 45 of file RankingEntityPK.java.

45  {
46  this.concept = concept;
47  }

◆ setEntityPath()

void org.turro.ranking.RankingEntityPK.setEntityPath ( String  entityPath)

Definition at line 37 of file RankingEntityPK.java.

37  {
38  this.entityPath = entityPath;
39  }

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