compareTo method

  1. @override
int compareTo(
  1. T other
)
override

By default compare the two domain by it's id

Implementation

@override
int compareTo(T other) {
  return this.id.compareTo(other.id);
}