◆ equals()
boolean org.turro.elephant.entities.db.TimeTrackerPK.equals |
( |
Object |
obj | ) |
|
Definition at line 69 of file TimeTrackerPK.java.
76 if (getClass() != obj.getClass()) {
79 final TimeTrackerPK other = (TimeTrackerPK) obj;
80 if (!Objects.equals(
this.entityPath, other.entityPath)) {
83 if (!Objects.equals(
this.trackedPath, other.trackedPath)) {
86 if (!Objects.equals(
this.timeTrack, other.timeTrack)) {
◆ from()
Definition at line 94 of file TimeTrackerPK.java.
95 TimeTrackerPK pk =
new TimeTrackerPK();
96 pk.setEntityPath(tt.getEntityPath());
97 pk.setTrackedPath(tt.getTrackedPath());
98 pk.setTimeTrack(tt.getTimeTrack());
◆ getEntityPath()
String org.turro.elephant.entities.db.TimeTrackerPK.getEntityPath |
( |
| ) |
|
◆ getTimeTrack()
Date org.turro.elephant.entities.db.TimeTrackerPK.getTimeTrack |
( |
| ) |
|
◆ getTrackedPath()
String org.turro.elephant.entities.db.TimeTrackerPK.getTrackedPath |
( |
| ) |
|
◆ hashCode()
int org.turro.elephant.entities.db.TimeTrackerPK.hashCode |
( |
| ) |
|
Definition at line 60 of file TimeTrackerPK.java.
62 hash = 53 * hash + Objects.hashCode(this.entityPath);
63 hash = 53 * hash + Objects.hashCode(this.trackedPath);
64 hash = 53 * hash + Objects.hashCode(this.timeTrack);
◆ setEntityPath()
void org.turro.elephant.entities.db.TimeTrackerPK.setEntityPath |
( |
String |
entityPath | ) |
|
◆ setTimeTrack()
void org.turro.elephant.entities.db.TimeTrackerPK.setTimeTrack |
( |
Date |
timeTrack | ) |
|
◆ setTrackedPath()
void org.turro.elephant.entities.db.TimeTrackerPK.setTrackedPath |
( |
String |
trackedPath | ) |
|
The documentation for this class was generated from the following file: