Class java.lang.Integer (1.0)


public final class Integer extends Number {
  // Public Constructors
    public Integer(int value);
    public Integer(String s) throws NumberFormatException;
  // Constants
    public final static int MAX_VALUE;
    public final static int MIN_VALUE;
    public final static Class TYPE;
  // Class Methods
    public static Integer decode(String nm) throws NumberFormatException;
    public static Integer getInteger(String nm);
    public static Integer getInteger(String nm, int val);
    public static Integer getInteger(String nm, Integer val);
    public static int parseInt(String s, int radix) throws NumberFormatException;
    public static int parseInt(String s) throws NumberFormatException;
    public static String toBinaryString(int i);
    public static String toHexString(int i);
    public static String toOctalString(int i);
    public static String toString(int i, int radix);
    public static String toString(int i);
    public static Integer valueOf(String s, int radix) throws NumberFormatException;
    public static Integer valueOf(String s) throws NumberFormatException;
  // Public Instance Methods
    public byte byteValue( );  // Overrides Number.byteValue( )
    public double doubleValue( );  // Defines Number.doubleValue( )
    public boolean equals(Object obj);  // Overrides Object.equals( )
    public float floatValue( );  // Defines Number.floatValue( )
    public int hashCode( );  // Overrides Object.hashCode( )
    public int intValue( );  // Defines Number.intValue( )
    public long longValue( );  // Defines Number.longValue( )
    public short shortValue( );  // Overrides Number.shortValue( )
    public String toString( );  // Overrides Object.toString( )
}