Package java.langClass Short
int hashCode()
Overrides:
_INSERT_METHOD_SIGNATURE_HERE_
Description:
Returns a hashcode for this Short.
Example
Short sh = new Short("10"); int hashCode = sh.hashCode(); Logger.log("hashcode: " + hashCode);
The example above returns the hashcode value and writes it to the logger.