Package java.lang
Class Integer
Description:
Returns a hashcode for this Integer.
Example
Integer hc = new Integer("10");
int hashCode = hc.hashCode();
Logger.log("hashcode: " + hashCode);
The example above returns the hashcode value and writes it to the logger.