Package java.lang
Class Short

Public Method intValue

int intValue()

Overrides:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Returns an int value of this Short.

Example

   Short sh = new Short("10");
   int intvalue = sh.intValue();
   Logger.log("intvalue: " + intvalue);

The example above returns the int value and writes it to the logger.