operator > abstract method

bool operator >(
  1. Object other
)

> operator to compare this and other. If this is overridden, the < operator uses it to compute its value, but can also be overridden

USE StrictComparable IF YOU ONLY WANT TO COMPARE TO T

If you need to specify what Type is used on > and < operators, use SpecificComparable

Implementation

bool operator >(Object other);