Changed Methods |
byte byteValue()
|
Documentation changed from old to new. |
Returns the value of this Integer as a byte . |
Integer decode(String )
|
Documentation changed from old to new. |
Decodes a String into an Integer . |
double doubleValue()
|
Documentation changed from old to new. |
Returns the value of this Integer as a double . |
float floatValue()
|
Documentation changed from old to new. |
Returns the value of this Integer as a float . |
int hashCode()
|
Documentation changed from old to new. |
Returns a hash code for this Integer . |
int intValue()
|
Documentation changed from old to new. |
Returns the value of this Integer as an int . |
long longValue()
|
Documentation changed from old to new. |
Returns the value of this Integer as a long . |
short shortValue()
|
Documentation changed from old to new. |
Returns the value of this Integer as a short . |
String toBinaryString(int )
|
Documentation changed from old to new. |
Returns a string representation of the integer argument as an unsigned integer in base 2. |
String toHexString(int )
|
Documentation changed from old to new. |
Returns a string representation of the integer argument as an unsigned integer in base 16. |
String toOctalString(int )
|
Documentation changed from old to new. |
Returns a string representation of the integer argument as an unsigned integer in base 8. |
int compareTo(Integer )
|
Documentation changed from old to new. |
Compares two Integer objects numerically. |
int compareTo(Object )
|
Documentation changed from old to new. |
Compares this Integer object to another object. |
Integer getInteger(String )
|
Documentation changed from old to new. |
Determines the integer value of the system property with the specified name. |
Integer getInteger(String, int)
|
Documentation changed from old to new. |
Determines the integer value of the system property with the specified name. |
Integer getInteger(String, Integer)
|
Documentation changed from old to new. |
Returns the integer value of the system property with the specified name. |
int parseInt(String )
|
Documentation changed from old to new. |
Parses the string argument as a signed decimal integer. |
int parseInt(String, int)
|
Documentation changed from old to new. |
Parses the string argument as a signed integer in the radix specified by the second argument. |
String toString(int )
|
Documentation changed from old to new. |
Returns a String object representing the specified integer. |
String toString(int, int)
|
Documentation changed from old to new. |
Returns a string representation of the first argument in the radix specified by the second argument. |
String toString()
|
Documentation changed from old to new. |
Returns a String object representing this Integer 's value. |
Integer valueOf(String )
|
Documentation changed from old to new. |
Returns an Integer object holding the value of the specified String . |
Integer valueOf(String, int)
|
Documentation changed from old to new. |
Returns an Integer object holding the value extracted from the specified String when parsed with the radix given by the second argument. |