I know in Java there are two kinds of integers. First is "int" which is the primitive integer. The second is "Integer" which is a class with methods and stuff.
While programming for Android I saw another type: "integer" with all lowercase chars. It is declared in "android.R" namespace and there is only four static methods in it.
What is it? Why is it there? What is its relation with "int" and "Integer" (if any?)