I thought it would be nice to use generics to write a quick sort. I'm just learning generics, and it seems like you can only test whether one generic value is equal to another. Is there a way to see if one is greater then another? I wrote a simple isBig method as follows
public Boolean isBigger( T b)
{
if (b>x) // error message here
return true;
return false;
}