JAVA Integer Àà

public static final int MIN_VALUE    0x80000000;
public static final int MAX_VALUE    0x7fffffff;
public static final Class TYPE    Class.getPrimitiveClass("int");
public static String Integer::toString(int i, int radix)
public static String Integer::toHexString(int i)
public static String Integer::toOctalString(int i)
public static String Integer::toBinaryString(int i)
public static String Integer::toString(int i)
public static int Integer::parseInt(String s, int radix)
public static int Integer::parseInt(String s) throws NumberFormatException
public static Integer Integer::valueOf(String s, int radix) throws NumberFormatException
public static Integer Integer::valueOf(String s) throws NumberFormatException
public Integer::Integer(int value)
public Integer::Integer(String s) throws NumberFormatException
public byte Integer::byteValue()
public short Integer::shortValue()
public int Integer::intValue()
public long Integer::longValue()
public float Integer::floatValue()
public double Integer::doubleValue()
public String Integer::toString()
public int Integer::hashCode()
public boolean Integer::equals(Object obj)
public static Integer Integer::getInteger(String nm)
public static Integer Integer::getInteger(String nm, int val)
public static Integer Integer::getInteger(String nm, Integer val)
public static Integer Integer::decode(String nm) throws NumberFormatException
public int Integer::compareTo(Integer anotherInteger)
public int Integer::compareTo(Object o)