You cannot use mathematical notation, in fact I would not be used to using == either, I am sure that if they do not use some serious trick, this will not work.
a = new BigInteger(500);
b = a;
if( a == b )
will always be true
b=new BigInteger(500);
if( a == b )
will never be true
if( a.equals(b) )
will always work fine.
Java - Java, Complex, , .
, Java , Groovy , . , .
, , Groovy - , .