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

java.lang.Short Maven / Gradle / Ivy

The newest version!
package java.lang;

public final class Short extends Number implements Comparable {
	public static final short MAX_VALUE= 32767;
	public static final short MIN_VALUE= -32768;
    public final static Class TYPE;
    
    static {
    	TYPE= new Object().getClass();
    }

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

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

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

    public static String toString(short s) {
        return null;
    }

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

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


    public Short(short value) {}
   
    /**
     * @throws NumberFormatException
     */
    public Short(String s) throws NumberFormatException {}

    public byte byteValue() {
        return 0;
    }

    public int compareTo(Short anotherShort) {
        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