Package java.lang
Class Character
Description:
This method compares this object to the specified object. The result is true if and only if the argument is not null and is a Character object that contains the same byte value as this object.
Example
Character eqA = new Character('c');
Character eqB = new Character('c');
if (eqA.equals(eqB))
Logger.log("correct: A eq B");
The comparison between eqA and eqB delivers a true result.