All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.lang.Integer Maven / Gradle / Ivy

The newest version!
package java.lang;

public final class Integer extends Number implements Comparable {
	public static final int MAX_VALUE= 2147483647;
	public static final int MIN_VALUE= -2147483648;
    public final static Class TYPE;
    
    static {
    	TYPE= new Object().getClass();
    }

    /**
     * @throws NumberFormatException
     */
    public static Integer decode(String nm) throws NumberFormatException {
        return null;
    }

    public static Integer getInteger(String nm) {
        return null;
    }

    public static Integer getInteger(String nm, int val) {
        return null;
    }

    public static Integer getInteger(String nm, Integer val) {
        return null;
    }

    /**
     * @throws NumberFormatException
     */
    public static int parseInt(String s, int radix) throws NumberFormatException {
        return 0;
    }

    /**
     * @throws NumberFormatException
     */
    public static int parseInt(String s) throws NumberFormatException {
        return 0;
    }

    public static String toBinaryString(int i) {
        return null;
    }

    public static String toHexString(int i) {
        return null;
    }

    public static String toOctalString(int i) {
        return null;
    }

    public static String toString(int i, int radix) {
        return null;
    }

    public static String toString(int i) {
        return null;
    }

    /**
     * @throws NumberFormatException
     */
    public static Integer valueOf(String s, int radix) throws NumberFormatException {
        return null;
    }

    /**
     * @throws NumberFormatException
     */
    public static Integer valueOf(String s) throws NumberFormatException {
        return null;
    }


    public Integer(int value) {}
    /**
     * @throws NumberFormatException
     */
    public Integer(String s) throws NumberFormatException {}

    public byte byteValue() {
        return 0;
    }

    public int compareTo(Integer anotherInteger) {
        return 0;
    }

    public int compareTo(Object o) {
        return 0;
    }

    public double doubleValue() {
        return 0;
    }

    public boolean equals(Object obj) {
        return false;
    }

    public float floatValue() {
        return 0;
    }

    public int hashCode() {
        return 0;
    }

    public int intValue() {
        return 0;
    }

    public long longValue() {
        return 0;
    }

    public short shortValue() {
        return 0;
    }

    public String toString() {
        return null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy