static int
bitCount(int i)
Returns the number of one-bits in the two's complement binary representation of the specified int
value.
byte
byteValue()
Returns the value of this Integer
as a byte
.
static int
compare(int x, int y)
Compares two int
values numerically.
int
compareTo(Integer anotherInteger)
Compares two Integer
objects numerically.
static Integer
decode(String nm)
Decodes a String
into an Integer
.
double
doubleValue()
Returns the value of this Integer
as a double
.
boolean
equals(Object obj)
Compares this object to the specified object.
float
floatValue()
Returns the value of this Integer
as a float
.
static Integer
getInteger(String nm)
Determines the integer value of the system property with the specified name.
static Integer
getInteger(String nm, int val)
Determines the integer value of the system property with the specified name.
static Integer
getInteger(String nm, Integer val)
Returns the integer value of the system property with the specified name.
int
hashCode()
Returns a hash code for this Integer
.
static int
highestOneBit(int i)
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.
int
intValue()
Returns the value of this Integer
as an int
.
long
longValue()
Returns the value of this Integer
as a long
.
static int
lowestOneBit(int i)
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.
static int
numberOfLeadingZeros(int i)
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.
static int
numberOfTrailingZeros(int i)
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.
static int
parseInt(String s)
Parses the string argument as a signed decimal integer.
static int
parseInt(String s, int radix)
Parses the string argument as a signed integer in the radix specified by the second argument.
static int
reverse(int i)
Returns the value obtained by reversing the order of the bits in the two's complement binary representation of the specified int
value.
static int
reverseBytes(int i)
Returns the value obtained by reversing the order of the bytes in the two's complement representation of the specified int
value.
static int
rotateLeft(int i, int distance)
Returns the value obtained by rotating the two's complement binary representation of the specified int
value left by the specified number of bits.
static int
rotateRight(int i, int distance)
Returns the value obtained by rotating the two's complement binary representation of the specified int
value right by the specified number of bits.
short
shortValue()
Returns the value of this Integer
as a short
.
static int
signum(int i)
Returns the signum function of the specified int
value.
static String
toBinaryString(int i)
Returns a string representation of the integer argument as an unsigned integer in base 2.
static String
toHexString(int i)
Returns a string representation of the integer argument as an unsigned integer in base 16.
static String
toOctalString(int i)
Returns a string representation of the integer argument as an unsigned integer in base 8.
String
toString()
Returns a String
object representing this Integer
's value.
static String
toString(int i)
Returns a String
object representing the specified integer.
static String
toString(int i, int radix)
Returns a string representation of the first argument in the radix specified by the second argument.
static Integer
valueOf(int i)
Returns an Integer
instance representing the specified int
value.
static Integer
valueOf(String s)
Returns an Integer
object holding the value of the specified String
.
static Integer
valueOf(String s, int radix)
Returns an Integer
object holding the value extracted from the specified String
when parsed with the radix given by the second argument.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4