Uses of Class
java.lang.Integer
-
Packages that use Integer Package Description java.lang -
-
Uses of Integer in java.lang
Methods in java.lang that return Integer Modifier and Type Method Description static Integer
Integer. decode(String string)
Parses the specified string and returns aInteger
instance if the string can be decoded into an integer value.static Integer
Integer. valueOf(int i)
Returns aInteger
instance for the specified integer value.static Integer
Integer. valueOf(String string)
Parses the specified string as a signed decimal integer value.static Integer
Integer. valueOf(String string, int radix)
Parses the specified string as a signed integer value using the specified radix.Methods in java.lang with parameters of type Integer Modifier and Type Method Description int
Integer. compareTo(Integer object)
Compares this object to the specified integer object to determine their relative order.
-