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

java.lang.Short Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package java.lang;

/**
 * @since CLDC 1.0
 */
public final class Short {
    public final static short MAX_VALUE= 32767;
    public final static short MIN_VALUE= -32768;

    /**
     * @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 Short(short arg0) {}

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

    public int hashCode() {
        return 0;
    }

    public short shortValue() {
        return 0;
    }

    public String toString() {
        return null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy