The methods of Java.Lang.Integer are listed below. For a list of all members, see the Integer Members list.
See Also: Inherited members from Java.Lang.Number
static | BitCount(int)Counts the number of 1 bits in the specified integer; this is also referred to as population count. | |
static | Compare(int, int)Compares two int values. | |
CompareTo(Integer)Compares this object to the specified integer object to determine their relative order. | ||
static | Decode(string)Parses the specified string and returns a Integer instance if the string can be decoded into an integer value. | |
override | DoubleValue()Returns this object's value as a double. | |
override | FloatValue()Returns this object's value as a float. | |
static | GetInteger(string)Returns the Integer value of the system property identified by string. | |
static | GetInteger(string, Integer)Returns the Integer value of the system property identified by string. | |
static | GetInteger(string, int)Returns the Integer value of the system property identified by string. | |
static | HighestOneBit(int)Determines the highest (leftmost) bit of the specified integer that is 1 and returns the bit mask value for that bit. | |
override | IntValue()Gets the primitive value of this int. | |
override | LongValue()Returns this object's value as a long. | |
static | LowestOneBit(int)Determines the lowest (rightmost) bit of the specified integer that is 1 and returns the bit mask value for that bit. | |
static | NumberOfLeadingZeros(int)Determines the number of leading zeros in the specified integer prior to the Integer.HighestOneBit(int). | |
static | NumberOfTrailingZeros(int)Determines the number of trailing zeros in the specified integer after the Integer.LowestOneBit(int). | |
static | ParseInt(string)Parses the specified string as a signed decimal integer value. | |
static | ParseInt(string, int)Parses the specified string as a signed integer value using the specified radix. | |
static | Reverse(int)Reverses the order of the bits of the specified integer. | |
static | ReverseBytes(int)Reverses the order of the bytes of the specified integer. | |
static | RotateLeft(int, int)Rotates the bits of the specified integer to the left by the specified number of bits. | |
static | RotateRight(int, int)Rotates the bits of the specified integer to the right by the specified number of bits. | |
static | Signum(int)Returns the value of the signum function for the specified integer. | |
static | ToBinaryString(int)Converts the specified integer into its binary string representation. | |
static | ToHexString(int)Converts the specified integer into its hexadecimal string representation. | |
static | ToOctalString(int)Converts the specified integer into its octal string representation. | |
static | ToString(int)Converts the specified integer into its decimal string representation. | |
static | ToString(int, int)Converts the specified signed integer into a string representation based on the specified radix. | |
static | ValueOf(int)Returns a Integer instance for the specified integer value. | |
static | ValueOf(string)Parses the specified string as a signed decimal integer value. | |
static | ValueOf(string, int)Parses the specified string as a signed integer value using the specified radix. |