forked from nsquare-jdzone/java-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEmployee.java
More file actions
46 lines (37 loc) · 1.03 KB
/
Employee.java
File metadata and controls
46 lines (37 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.javadeveloperzone;
import java.util.Objects;
public class Employee {
int empId;
String empName;
String empAddress;
public int getEmpId() {
return empId;
}
public void setEmpId(int empId) {
this.empId = empId;
}
public String getEmpName() {
return empName;
}
public void setEmpName(String empName) {
this.empName = empName;
}
public Employee(int empId, String empName, String empAddress) {
this.empId = empId;
this.empName = empName;
this.empAddress = empAddress;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Employee employee = (Employee) o;
return empId == employee.empId &&
empName.equals(employee.empName) &&
empAddress.equals(employee.empAddress);
}
@Override
public int hashCode() {
return Objects.hash(empId, empName, empAddress);
}
}