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