- Java.lang - Void
- Java.lang - Throwable
- Java.lang - ThreadLocal
- Java.lang - ThreadGroup
- Java.lang - Thread
- Java.lang - System
- Java.lang - StringBuilder
- Java.lang - StringBuffer
- Java.lang - String
- Java.lang - StrictMath
- Java.lang - StackTraceElement
- Java.lang - Short
- Java.lang - SecurityManager
- Java.lang - RuntimePermission
- Java.lang - Runtime
- Java.lang - ProcessBuilder
- Java.lang - Process
- Java.lang - Package
- Java.lang - Object
- Java.lang - Number
- Java.lang - Math
- Java.lang - Long
- Java.lang - Integer
- Java.lang - InheritableThreadLocal
- Java.lang - Float
- Java.lang - Enum
- Java.lang - Double
- Java.lang - Compiler
- Java.lang - ClassLoader
- Java.lang - Class
- Java.lang - Character.UnicodeBlock
- Java.lang - Character.Subset
- Java.lang - Character
- Java.lang - Byte
- Java.lang - Boolean
- Java.lang - Home
Java.lang Package extras
Java.lang Package Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Java.lang.Integer Class
Introduction
The java.lang.Integer class wraps a value of the primitive type int in an object. An object of type Integer contains a single field whose type is int.
Class Declaration
Following is the declaration for java.lang.Integer class −
pubpc final class Integer extends Number implements Comparable<Integer>
Field
Following are the fields for java.lang.Integer class −
static int MAX_VALUE − This is a constant holding the maximum value an int can have, 231-1.
static int MIN_VALUE − This is a constant holding the minimum value an int can have, -231.
static int SIZE − This is the number of bits used to represent an int value in two s complement binary form.
static Class<Integer> TYPE − This is the class instance representing the primitive type int.
Class constructors
Sr.No. | Constructor & Description |
---|---|
1 |
Integer(int value) This constructs a newly allocated Integer object that represents the specified int value. |
2 |
Integer(String s) This constructs a newly allocated Integer object that represents the int value indicated by the String parameter. |
Class methods
Sr.No. | Method & Description |
---|---|
1 | This method returns the number of one-bits in the two s complement binary representation of the specified int value. |
2 | This method returns the value of this Integer as a byte. |
3 | This method compares two Integer objects numerically. |
4 | This method decodes a String into an Integer. |
5 | This method returns the value of this Integer as a double. |
6 | This method compares this object to the specified object. |
7 | This method returns the value of this Integer as a float. |
8 | This method determines the integer value of the system property with the specified name. |
9 | This method determines the integer value of the system property with the specified name. |
10 | This method returns the integer value of the system property with the specified name. |
11 | This method returns a hash code for this Integer. |
12 | This method returns an int value with at most a single one-bit, in the position of the highest-order ("leftmost") one-bit in the specified int value. |
13 | This method returns the value of this Integer as an int. |
14 | This method returns the value of this Integer as a long. |
15 | This method returns an int value with at most a single one-bit, in the position of the lowest-order ("rightmost") one-bit in the specified int value. |
16 | This method returns the number of zero bits preceding the highest-order ("leftmost") one-bit in the two s complement binary representation of the specified int value. |
17 | This method returns the number of zero bits following the lowest-order ("rightmost") one-bit in the two s complement binary representation of the specified int value. |
18 | This method parses the string argument as a signed decimal integer. |
19 | This method parses the string argument as a signed integer in the radix specified by the second argument. |
20 | This method returns the value obtained by reversing the order of the bits in the two s complement binary representation of the specified int value. |
21 | This method returns the value obtained by reversing the order of the bytes in the two s complement representation of the specified int value. |
22 | This method returns the value obtained by rotating the two s complement binary representation of the specified int value left by the specified number of bits. |
23 | This method returns the value obtained by rotating the two s complement binary representation of the specified int value right by the specified number of bits. |
24 | This method returns the value of this Integer as a short. |
25 | This method returns the signum function of the specified int value. |
26 | This method returns a string representation of the integer argument as an unsigned integer in base 2. |
27 | This method returns a string representation of the integer argument as an unsigned integer in base 16. |
28 | This method returns a string representation of the integer argument as an unsigned integer in base 8. |
29 | This method returns a String object representing this Integer s value. |
30 | This method returns a String object representing the specified integer. |
31 | This method returns a string representation of the first argument in the radix specified by the second argument. |
32 | This method returns a Integer instance representing the specified int value. |
33 | This method returns an Integer object holding the value of the specified String. |
34 | This method returns an Integer object holding the value extracted from the specified String when parsed with the radix given by the second argument. |
Methods inherited
This class inherits methods from the following classes −
java.lang.Object