class Person : Comparable<Person>, Serializable
(source)
The Key type maintained by the PersonParser.
<init> |
The Key type maintained by the PersonParser. Person(firstName: String, lastName: String) |
firstName |
of the Person. var firstName: String |
lastName |
of the Person. var lastName: String |
compareTo |
fun compareTo(other: Person): Int |
equals |
fun equals(other: Any?): Boolean |
toString |
fun toString(): String |
comparator |
val comparator: Comparator<Person> |
getMax |
fun getMax(): Person |
getMin |
fun getMin(): Person |