class DepartmentEmployee : Comparable<DepartmentEmployee>, Serializable
(source)
The Key type maintained by the DepartmentEmployeesParser.
<init> |
The Key type maintained by the DepartmentEmployeesParser. DepartmentEmployee(depName: String, info: Person) |
depName |
The department name where the employee works. var depName: String |
info |
The information about the employ. Provided as Person var info: Person |
compareTo |
fun compareTo(other: DepartmentEmployee): Int |
equals |
fun equals(other: Any?): Boolean |
toString |
fun toString(): String |
comparator |
val comparator: Comparator<DepartmentEmployee> |
getMax |
fun getMax(): DepartmentEmployee |
getMin |
fun getMin(): DepartmentEmployee |