util.Integer methods
Methods for the util.Integer
class.
Name | Description |
---|---|
|
Returns the absolute value of an integer. |
|
Returns the result of a bitwise AND on two INTEGER
values. |
|
Returns the result of a bitwise AND of the 1st
INTEGER and the inverted 2nd INTEGER . |
|
Returns the INTEGER parameter with the bit at the
designated position set to 0. |
|
Returns the INTEGER value with all bits
inverted. |
|
Returns the result of a bitwise OR on two INTEGER
values. |
|
Returns an INTEGER from its binary (base 2) string
representation |
|
Returns an INTEGER from its hexadecimal (base 16)
string representation. |
|
Returns the INTEGER parameter with the bit at the
designated position set to 1. |
|
Returns the INTEGER value left-shifted by the given
bit places. |
|
Returns the INTEGER value right-shifted by the given
bit places. |
|
Returns TRUE , if in the INTEGER
value, the bit at the designed position is set. |
|
Returns the string representation of an INTEGER , as
an unsigned integer in base 2. |
|
Returns the string representation of an INTEGER , as
an unsigned integer in base 16. |
|
Returns the result of a bitwise XOR on two INTEGER
values. |