| Name | Signature and Synopsis |
|---|---|
MAX_VALUE | int MAX_VALUE ()Returns the maximum value an int can have, 2^31-1. |
MIN_VALUE | int MIN_VALUE ()Returns the minimum value an int can have, -2^31. |
doubleValue | double doubleValue (String s)Returns the value of double in the String passed . |
intValue | int intValue (String s, int radix)Returns the value of the integer in the String passed based on the passed radix (number base). |
longValue | long longValue (String s, int radix)Returns the value of long in the String passed based on the passed radix (number base). |
toBinaryString | String toBinaryString (int i)Returns a String containing the binary representation of the int passed. |
toHexString | String toHexString (int i)Returns a String containing the hexadecimal representation of the int passed. |
toOctalString | String toOctalString (int i)Returns a String containing the octal representation of the int passed. |
valueOfFloat | int valueOfFloat (float f)Returns the value of the float passed in ( f) as an int. |
valueOfLong | int valueOfLong (long l)Returns the value of the long passed in ( l) as an int. |
valueOfString | int valueOfString (String s, int radix)Returns the value of the integer in the String passed based on the passed radix (number base). |